<?xml version="1.0" encoding="utf-8"?><!-- generator="WordPress/2.7.1" -->
<rss version="0.92">
<channel>
	<title>Fullycoded.com</title>
	<link>http://fullycoded.com</link>
	<description>Best website scripts, Source code in Visual basic, php, cgi , javascript and asp...</description>
	<lastBuildDate>Wed, 20 May 2009 11:06:36 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Visual Basic source code for Article extractor</title>
		<description>Title : VB Code for Article extractor to find article.

About Application : The desktop application will help you find articles of your niche and extract them for you to study or to use them for your article site or website. Please visit the application website at http://www.jvwinc.com/article-extractor.html to know more.

Cost ...</description>
		<link>http://fullycoded.com/?p=241</link>
			</item>
	<item>
		<title>Warning and error in C#</title>
		<description>WARNING.CS
===


#warning This is A warning
class zzz
{
//#error This is An error
public static void Main()
{
System.Console.WriteLine("MAIN"); 
}
}


===

For other C# code or website scripts source code please visit http://fullycoded.com/ </description>
		<link>http://fullycoded.com/?p=240</link>
			</item>
	<item>
		<title>While and Writeline in c sharp</title>
		<description>C# code for While and Writeline

1. While1.cs :

class zzz
{
static void Main()
{
int ii;
ii=1;
while ( ii < = 5 ) 
{
System.Console.WriteLine ("Hi  {0}", ii);
	ii++;
}
}
}

2. Writeline1.cs :

// created on 3/1/2008 at 12:36 AM
class callingfunction
{
	static void Main(){
		
		System.Console.WriteLine("Hundred ={0}",100);
		                ...</description>
		<link>http://fullycoded.com/?p=239</link>
			</item>
	<item>
		<title>Virtual Override</title>
		<description>Similar to C# code for virtual we provide you Virtual OverRide code

class zzz
{
public static void Main()
{
yyy a = new yyy();xxx b = new xxx();yyy c = new xxx();
a.abc();a.pqr();a.xyz();
b.abc();b.pqr();b.xyz();
c.abc();c.pqr();c.xyz();
}}
class yyy
{
public virtual void abc()
{System.Console.WriteLine("yyy abc");}
public virtual void pqr()
{System.Console.WriteLine("yyy pqr");}
public virtual void xyz()
{System.Console.WriteLine("yyy xyz");}
}
class xxx : yyy
{
public override void abc()
{System.Console.WriteLine("xxx abc");}
public new void ...</description>
		<link>http://fullycoded.com/?p=238</link>
			</item>
	<item>
		<title>Virtual.cs C# code</title>
		<description>Virtual.cs
===


class zzz
{
public static void Main()
{
yyy a = new xxx();
yyy b = new vvv();
xxx c = new vvv();
a.abc();a.pqr();a.xyz();b.abc();b.pqr();b.xyz();c.abc();c.pqr();c.xyz();}}
class yyy
{
public void abc()
{System.Console.WriteLine("yyy abc");}
public virtual void pqr()
{System.Console.WriteLine("yyy pqr");}
public virtual void xyz()
{System.Console.WriteLine("yyy xyz");}
}
class xxx : yyy
{
public virtual void abc()
{System.Console.WriteLine("xxx abc");}
public new void pqr()
{System.Console.WriteLine("xxx pqr");}
public override void xyz()
{System.Console.WriteLine("xxx xyz");}
}
class vvv : xxx
{
public override void abc()
{System.Console.WriteLine("vvv ...</description>
		<link>http://fullycoded.com/?p=237</link>
			</item>
	<item>
		<title>Unsafe code in C#</title>
		<description>Unsafe : This means pointers are allowed in C# code. If you wish to compile unsafe code then should specify the /unsafe compiler option in the command line(This is not required if you are using Visual Studio.NET).


using System;
class zzz {
public static void Main() {
yyy a = new yyy();
a.abc();
}
}
unsafe class yyy ...</description>
		<link>http://fullycoded.com/?p=236</link>
			</item>
	<item>
		<title>C# code for Throw</title>
		<description>class zzz
{
public static void Main()
{
yyy a;
a=new yyy();
try
{
a.abc();
System.Console.WriteLine("Bye");
}
catch (System.Exception e)
{
System.Console.WriteLine("In Exception"+ e.ToString());
}
System.Console.WriteLine("After Exception");
System.Console.Read();
}
}
class yyy {
public void abc()
{
throw new System.Exception("C# Throw code exception");
System.Console.WriteLine("C# Throw code");
}
} </description>
		<link>http://fullycoded.com/?p=235</link>
			</item>
	<item>
		<title>Threads in C# programming</title>
		<description>1. C# Threads Example 1
using System.Threading;
public class yyy
{
public void abc()
{
for ( int i = 0; i< =3;i++)
{
System.Console.Write(i + " ");
}
}
public void pqr()
{
for ( int i = 0; i </description>
		<link>http://fullycoded.com/?p=234</link>
			</item>
	<item>
		<title>Tip of the day script</title>
		<description>Part 1 - q.readme.txt
These three different scripts read a single line from a file containing quotes, or "one-liners" as they're sometimes called. Of course, you need a file of quotes to begin with, so I included my own quotes file in the zip file. 

The first one seeds the randoming ...</description>
		<link>http://fullycoded.com/?p=233</link>
			</item>
	<item>
		<title>System Variables in C#</title>
		<description>C# code for System Variables

class zzz
{
public static void Main(){
System.Collections.IDictionary i=System.Environment.GetEnvironmentVariables ();
System.Collections.IDictionaryEnumerator d=i.GetEnumerator();
System.Console.WriteLine("Content-Type:text/html\n");
System.Console.WriteLine(i.Count + "");
while (d.MoveNext())
{
System.Console.WriteLine("{0}={1}",d.Key,d.Value);
}}}
 </description>
		<link>http://fullycoded.com/?p=232</link>
			</item>
	<item>
		<title>Struct program in C#</title>
		<description>One of the simplest program for Struct...

===
class zzz
{
public static void Main() 
{
xxx  a = new xxx(10);
}
}
struct xxx
{
public int i,j;
public xxx(int p)
{
i = p;
j = 0;
}
}
===

Just compile it and run it to understand the c# code better. </description>
		<link>http://fullycoded.com/?p=231</link>
			</item>
	<item>
		<title>Static in C#</title>
		<description>Static in c#
===
class zzz
{
	static void Main()
{
yyy a=new yyy();
a.abc();
yyy.pqr();
}
}
class yyy
{
public void abc()
{
System.Console.WriteLine("C# at abc");
}
public static void pqr()
{
System.Console.WriteLine("C# at pqr");
}
}

PS : VB Developers have the biggest problem understanding static when migrating from programming language Visual basic to a C#. </description>
		<link>http://fullycoded.com/?p=230</link>
			</item>
	<item>
		<title>Basics of C#</title>
		<description>WriteLine.cs and Return.cs :

1. WriteLine.cs
===
// created on 3/1/2002 at 12:36 AM
class callingfunction
{
	static void Main(){
		
		System.Console.WriteLine("Hundred ={0}",100);
		                         
	}
}
===


2. Return.cs
===
class zzz
{
static void Main()
{
int ii = abc();
System.Console.WriteLine("hi {0}",ii);
}
static int abc()
{
System.Console.WriteLine("abc");
return ...</description>
		<link>http://fullycoded.com/?p=229</link>
			</item>
	<item>
		<title>Reflection in c#</title>
		<description>Reflection is a process by which an application can read and collect data from assemby and metadata.

Reflection.cs
===
using System;
using System.Reflection;
class zzz
{
public static void Main() 
{
Type m;
m = typeof(int);
System.Console.WriteLine(m.Name + " " + m.FullName);
m = typeof(System.Int32);
System.Console.WriteLine(m.Name + " " + m.FullName);
m = typeof(yyy);
System.Console.WriteLine(m.Name + " " + m.FullName);
m=typeof(string);
MemberInfo [] n;
n = m.GetMembers();
Console.WriteLine(n.Length);
foreach ...</description>
		<link>http://fullycoded.com/?p=228</link>
			</item>
	<item>
		<title>Read from Web using C#</title>
		<description>Here again we will use System.Net and the classes we shall use in the c# code from the .NET framework are WebRequest and WebResponse. WebRequest and WebResponse classes from the .NET Library are used to to request web-pages from the internet. 

Readnet.cs
===
using System;
using System.Net;
using System.IO;
class zzz
{
public static void Main()
{
WebRequest r ...</description>
		<link>http://fullycoded.com/?p=227</link>
			</item>
</channel>
</rss>
