<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Fullycoded.com</title>
	<atom:link href="http://fullycoded.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://fullycoded.com</link>
	<description>Best website scripts, Source code in Visual basic, php, cgi , javascript and asp...</description>
	<lastBuildDate>Tue, 12 Jan 2010 18:26:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Bulk Pagerank checker</title>
		<link>http://fullycoded.com/?p=282</link>
		<comments>http://fullycoded.com/?p=282#comments</comments>
		<pubDate>Tue, 12 Jan 2010 18:26:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[reviews]]></category>
		<category><![CDATA[bulk pagerank checker]]></category>
		<category><![CDATA[software reviews]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=282</guid>
		<description><![CDATA[Title : Bulk Pagerank Checker
Runs on : Windows, requires php enabled server.
About this Application : Bulk Pagerank checker is a mass pagerank checker software by RebrandableSoftware.net. The software is a cool tool to find out pagerank of sites based on 4 factors.
1. Simple Pagerank check.
2. Pagerank checker of a text based database of sites.
3. Pagerank [...]]]></description>
			<content:encoded><![CDATA[<p><u>Title</u> : <strong>Bulk Pagerank Checker</strong></p>
<p><u>Runs on</u> : Windows, requires php enabled server.</p>
<p><u>About this Application</u> : Bulk Pagerank checker is a mass pagerank checker software by RebrandableSoftware.net. The software is a cool tool to find out pagerank of sites based on 4 factors.</p>
<p>1. Simple Pagerank check.</p>
<p>2. Pagerank checker of a text based database of sites.</p>
<p>3. Pagerank tool to check pagerank for all the link on a given site.</p>
<p>4. Pagerank checker to find pr based on a keyword search.</p>
<p><u>Review</u> : </p>
<p>1. Cost wise : 4/5 &#8211; The software only costs $67 which is way less than its competition.</p>
<p>2. Performance : 4/5 &#8211; The software is very fast in producing results. Quick in extraction of links and checking of pagerank. One of the Best for web-masters and Link builders. It would have been 5/5 if the software also had a proxy facility added.</p>
<p>3. Usage : 5/5 &#8211; The software is very easy to use which is put up into four tabs namely PR, PR DB, PR URL and PR SEARCH. Check the video below to understand how the video works &#8211; </p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/KjFQtXUgne0&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/KjFQtXUgne0&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=282</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applet in Java</title>
		<link>http://fullycoded.com/?p=278</link>
		<comments>http://fullycoded.com/?p=278#comments</comments>
		<pubDate>Thu, 31 Dec 2009 14:48:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[applet]]></category>
		<category><![CDATA[java code]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=278</guid>
		<description><![CDATA[Applet code in Java 
applE1.java
&#8212;
/**
*for writing(drawstring)
*your class shud always be a subclass of applet class
*@author : Ashish H Thakkar
*/
import java.awt.*; //pg 329
import java.applet.*;
/* &#60;applet code=&#8221;applE1&#8243; width=200 height=200>  */
public class applE1 extends Applet //accessed by code outside the prog
{
public void paint(Graphics g) // overiding method
{
g.drawString(&#8221;My first applet so soon &#8220;,100,50);
}
}
&#8212;
applE2.java
&#8212;
/**
*Applet for drawing
*@author : Ashish H [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Applet code in Java </strong></p>
<p>applE1.java<br />
&#8212;<br />
/**<br />
*for writing(drawstring)<br />
*your class shud always be a subclass of applet class<br />
*@author : Ashish H Thakkar<br />
*/</p>
<p>import java.awt.*; //pg 329<br />
import java.applet.*;<br />
/* &lt;applet code=&#8221;applE1&#8243; width=200 height=200>  */<br />
public class applE1 extends Applet //accessed by code outside the prog<br />
{<br />
public void paint(Graphics g) // overiding method<br />
{<br />
g.drawString(&#8221;My first applet so soon &#8220;,100,50);<br />
}<br />
}<br />
&#8212;</p>
<p>applE2.java<br />
&#8212;<br />
/**<br />
*Applet for drawing<br />
*@author : Ashish H Thakkar<br />
*/<br />
import java.awt.*;<br />
import java.applet.*;<br />
/* &lt;applet code=&#8221;applE2&#8243; width=200 height=200>  */<br />
public class applE2 extends Applet //accessed by code outside the prog<br />
{<br />
Color rang;            // color classs available<br />
public void init() // method available under applet class<br />
{<br />
setBackground(Color.pink);<br />
setForeground(Color.black);<br />
rang=new Color(100,50,90);<br />
}<br />
public void paint(Graphics g)<br />
{<br />
g.setColor(rang);<br />
g.fillRect(50,100,50,100);<br />
}}<br />
&#8212;</p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=278</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abstract code in Java</title>
		<link>http://fullycoded.com/?p=275</link>
		<comments>http://fullycoded.com/?p=275#comments</comments>
		<pubDate>Thu, 31 Dec 2009 14:36:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[java code]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=275</guid>
		<description><![CDATA[abstracT.java
&#8212;
/**
*any method is absTRACT then class shud be absTRACT.
*CANT CREATE METHOD OF ABSTRACT CLASS
*cant overide a final method , cant change final variable and
*final class cant be abstract and final class cant be extended
*@author : Ashish H Thakkar
*/
abstarct class demo
{
int x=5,y=10;
abstract void abc();
//not giving body hence abst.cant create an object of abstact class
abstract int pqr();
void [...]]]></description>
			<content:encoded><![CDATA[<p><strong>abstracT.java</strong></p>
<p>&#8212;<br />
/**<br />
*any method is absTRACT then class shud be absTRACT.<br />
*CANT CREATE METHOD OF ABSTRACT CLASS<br />
*cant overide a final method , cant change final variable and<br />
*final class cant be abstract and final class cant be extended<br />
*@author : Ashish H Thakkar<br />
*/<br />
abstarct class demo<br />
{<br />
int x=5,y=10;<br />
abstract void abc();<br />
//not giving body hence abst.cant create an object of abstact class<br />
abstract int pqr();<br />
void display()<br />
{<br />
System.out.println(&#8221;hello&#8221;);<br />
}<br />
}<br />
class abstracT extends demo<br />
{<br />
void abc() /*have to overide both*/<br />
{<br />
System.out.println(&#8221;the value of x and y are &#8220;+x+ &#8221; and &#8220;+y);<br />
}<br />
int pqr()<br />
{<br />
return x*y;<br />
}<br />
public static void main(String args[])<br />
{<br />
abstracT ob1=new abstracT();<br />
ob1.abc();<br />
ob1.display();<br />
int w=ob1.pqr();<br />
System.out.println(w);<br />
}}</p>
<p>&#8211;</p>
<p>This is similar to <a href="http://fullycoded.com/?p=199">Abstract classes in C#</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=275</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimize Windows XP</title>
		<link>http://fullycoded.com/?p=261</link>
		<comments>http://fullycoded.com/?p=261#comments</comments>
		<pubDate>Tue, 22 Sep 2009 11:12:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[reviews]]></category>
		<category><![CDATA[optimize windows xp]]></category>
		<category><![CDATA[tweak xp]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=261</guid>
		<description><![CDATA[Title : Optimize Windows Xp using software.
About this Application : Xp Tweak mechanic is a desktop application which can help you improve and optimize the performance of your Windows xp operating system. The software also helps  you boost your internet speed to some level.
The software is a must for any Windows Xp user who [...]]]></description>
			<content:encoded><![CDATA[<p><u>Title</u> : <strong>Optimize Windows Xp</strong> using software.</p>
<p><u>About this Application</u> : Xp Tweak mechanic is a desktop application which can help you improve and optimize the performance of your Windows xp operating system. The software also helps  you boost your internet speed to some level.</p>
<p>The software is a must for any Windows Xp user who wishes to get the best out of his/her  operating system. The Features of this software are :</p>
<p>1. Optimizes the start up and shut down speed along with Internet explorer settings.</p>
<p>2. No more frustrations as it takes care of your programs that are not responding. It will  quickly shutdown any non responding application.</p>
<p>3. Speeds up your start menu. This can really help you save a lot of time.</p>
<p>4. Important &#8211; Inbuilt functionality for memory management hence giving you a speedy performance  from system memory and ram.</p>
<p>5. Various other features such as Auto management of dll and Mouse positioner for quick work.</p>
<p><u>Cost</u> : <strike>$19.95</strike>$9.95 (<a href="https://www.paypal.com/xclick/business=ashish@jvw.in&#038;item_name=Optimize+Windows+Xp&#038;item_num ber=optimizexp&#038;amount=9.95&#038;no_note=1&#038;currency_code=USD&#038;lc=IN">Buy Now</a>)</p>
<p><img src="http://fullycoded.com/wp-content/uploads/2009/09/optimizewindowsxp.jpg" alt="Optimize Windows Xp" title="Optimize Windows Xp" width="706" height="270" class="aligncenter size-full wp-image-262" /></p>
<p><u>Note</u> : The software that will help you optimize Windows Xp is Jvw Xp tweak mechanic.</p>
<p>Cost of the application is $9.95 only with Free updates.</p>
<p><u>Payment</u> : 100% secure and can be made using Paypal.com or through credit card.</p>
<p><u>Package</u> : The software will come as a zip file and will include the below with it (optional) :</p>
<p>1. Help file to understand the using of the application in a much better way.</p>
<p>2. Document attached so that even non computer savvy people can know better.</p>
<p>3. Free popup blocker application to stop those annoying popups.</p>
<p>4. Support &#8211; After sales support is given through phone, email or Im.</p>
<p><center><a href="https://www.paypal.com/xclick/business=ashish@jvw.in&amp;item_name=Optimize+Windows+Xp&#038;item_number=optimizexp&#038;amount=9.95&#038;no_note=1&#038;currency_code=USD&#038;lc=IN"><img border="0" src="http://www.jvwinc.com/resellrights/images/bizclip995.gif" alt="Buy Optimize Windows Xp" /><br />
<img border="0" src="http://www.jvwinc.com/resellrights/images/013_38.gif" alt="Buy Optimize Windows Xp software" /><br />
</a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=261</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Content extractor</title>
		<link>http://fullycoded.com/?p=256</link>
		<comments>http://fullycoded.com/?p=256#comments</comments>
		<pubDate>Thu, 10 Sep 2009 18:28:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[reviews]]></category>
		<category><![CDATA[content extractor]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=256</guid>
		<description><![CDATA[Title : Content extractor by Jvw.
About : Content creation and content extraction software.
Category : Desktop application.
Review : 
The application is a simple desktop tool to create content from the world wide web.

Surprisingly the content extracted is search engine friendly and extracted content comes in SERPs also.

The software is pretty fast and creating content with it [...]]]></description>
			<content:encoded><![CDATA[<p>Title : <a href="http://www.jimmythakkar.com/blog/content-extractor">Content extractor</a> by Jvw.</p>
<p>About : Content creation and content extraction software.</p>
<p>Category : Desktop application.</p>
<p>Review : </p>
<li>The application is a simple desktop tool to create content from the world wide web.
</li>
<li>Surprisingly the content extracted is search engine friendly and extracted content comes in SERPs also.
</li>
<li>The software is pretty fast and creating content with it takes about a minute.
</li>
<li>This is a good niche software but very small niches will not be able to extract loads of content like other popular niches like weight loss, finance/forex, dog and pets, hair and skin care, seo and web design etc.
</li>
<li>Excellent tool as a FAQ builder or help page/tutorial builder.
</li>
<li>Nice tool to build an ebook in a matter of few minutes. So you can also call it an ebook builder.
</li>
<li>Has good feature of inbuilt ftp program and adsense inserter.
</li>
<li>Price is low which means it is targeted for all audiences.
<p><img src="http://fullycoded.com/wp-content/uploads/2009/09/jamnbanner.png" alt="Content extractor banner" title="Content extractor banner" width="461" height="161" class="aligncenter size-full wp-image-257" /></p>
<p>Other : Video for <strong>content extractor</strong> is located at <a href="http://www.youtube.com/watch?v=zUj9zoC7Bhw">http://www.youtube.com/watch?v=zUj9zoC7Bhw</a></p>
<p></p>
<p>Regards,<br />
The review team at Fullycoded.com</li>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=256</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatic backup software</title>
		<link>http://fullycoded.com/?p=248</link>
		<comments>http://fullycoded.com/?p=248#comments</comments>
		<pubDate>Tue, 01 Sep 2009 13:11:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vb code]]></category>
		<category><![CDATA[automatic backup software]]></category>
		<category><![CDATA[delphi code]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=248</guid>
		<description><![CDATA[Title : Automatic backup software with source code.
About this Application : It is a desktop application which can help you create automatic backup for your files and various folders. Think about how much time this can save you if everything is simply automatic.
The software is helpful to you because it will take a backup of [...]]]></description>
			<content:encoded><![CDATA[<p><u>Title</u> : <strong>Automatic backup software</strong> with source code.</p>
<p><u>About this Application</u> : It is a desktop application which can help you create automatic backup for your files and various folders. Think about how much time this can save you if everything is simply automatic.</p>
<p>The software is helpful to you because it will take a backup of your mentioned files and folders which may include :</p>
<p>1. Your pictures and the pictures of your family and friends &#8211; &#8220;My pictures&#8221; folder.</p>
<p>2. Your work folder or the folder where you have created and saved your documents &#8211; &#8220;My documents&#8221;.</p>
<p>3. Your favorites folder where you have everything bookmarked.</p>
<p>4. Important &#8211; Your email(s) folder so that a backup is made of all your emails.</p>
<p>5. Various other folders &#8211; Your movies, songs (mp3 files).</p>
<p>
<u>Cost</u> : $9.95 (<a href="https://www.paypal.com/xclick/business=ashish@jvw.in&amp;item_name=Automatic+Backup+software&#038;item_number=automaticbackup&#038;amount=9.95&#038;no_note=1&#038;currency_code=USD&#038;lc=IN">Buy Now</a>)</p>
<p><img src="http://fullycoded.com/wp-content/uploads/2009/09/automaticbackupsoftware.png" alt="Automatic backup software" title="Automatic backup software" width="528" height="365" class="alignnone size-full wp-image-249" /></p>
<p><u>Note</u> : The software code for Automatic backup software is not in VB but in Delphi.</p>
<p><u>Cost With source code</u> : $111.00</p>
<p><u>Payment</u> : Can be made by Paypal or credit card.</p>
<p><u>Package</u> : Source code plus the resell rights of the software application includes the below :</p>
<p>1. Rebranded Automatic backup software to take backup of your files and folders.</p>
<p>2. Full Source code for the software created in Delphi.</p>
<p>3. Help file of the desktop application.</p>
<p>4. 100% After sales support to make you happy.</p>
<p><center><a href="https://www.paypal.com/xclick/business=ashish@jvw.in&amp;item_name=Automatic+Backup+software&#038;item_number=automaticbackup&#038;amount=9.95&#038;no_note=1&#038;currency_code=USD&#038;lc=IN"><img border="0" src="http://www.jvwinc.com/resellrights/images/bizclip995.gif" alt="Buy Automatic backup software" /><br />
<img border="0" src="http://www.jvwinc.com/resellrights/images/013_38.gif" alt="Buy Automatic backup software" /><br />
</a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=248</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript popup software</title>
		<link>http://fullycoded.com/?p=246</link>
		<comments>http://fullycoded.com/?p=246#comments</comments>
		<pubDate>Wed, 15 Jul 2009 06:39:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vb code]]></category>
		<category><![CDATA[javascript popup]]></category>
		<category><![CDATA[resell rights]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=246</guid>
		<description><![CDATA[Title : Javascript popup source code for software.
About Application : This desktop application can help you create javascript popup windows that are unstoppable by popup blocking softwares and pop-up blockers that are installed within the toolbars.
The types of popup windows this software can create are :
1. StickMe Note
2. Timer Ads
3. Slide-in ads.
4. Bouncy ads.
5. Regular [...]]]></description>
			<content:encoded><![CDATA[<p>Title : <strong>Javascript popup</strong> source code for software.</p>
<p>About Application : This desktop application can help you create <a href="http://www.jvwinc.com/popupmaker.html">javascript popup</a> windows that are unstoppable by popup blocking softwares and pop-up blockers that are installed within the toolbars.</p>
<p>The types of popup windows this software can create are :<br />
1. StickMe Note<br />
2. Timer Ads<br />
3. Slide-in ads.<br />
4. Bouncy ads.<br />
5. Regular popup window ad.</p>
<p>Cost : $195.00</p>
<p>Available : With the resell rights of this desktop application you will get the below :</p>
<p>1. Rebranded Javascript popup windows software to create popup windows.</p>
<p>2. Complete Source code for the application in VisualBasic.</p>
<p>3. Help file for the software.</p>
<p>4. After sales support.</p>
<p>5. Web script for the application with resell rights &#8211; <a href="http://fullycoded.com/?p=43">http://fullycoded.com/?p=43</a></p>
<p>Note : You can also get rebranded version of this software/script at a lower cost from our resell rights website.</p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=246</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Basic source code for Article extractor</title>
		<link>http://fullycoded.com/?p=241</link>
		<comments>http://fullycoded.com/?p=241#comments</comments>
		<pubDate>Wed, 20 May 2009 10:54:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vb code]]></category>
		<category><![CDATA[Website scripts]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=241</guid>
		<description><![CDATA[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 : $345.00
Available : With the [...]]]></description>
			<content:encoded><![CDATA[<p>Title : <strong>VB Code for Article extractor to find article</strong>.</p>
<p>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 <a href="http://www.jvwinc.com/article-extractor.html">http://www.jvwinc.com/article-extractor.html</a> to know more.</p>
<p>Cost : $345.00</p>
<p>Available : With the resell rights package of the source code you will get the below :</p>
<p>1. Rebranded Article extractor software to find article.<br />
<br />
2. Source code for the application in Visual Basic.<br />
<br />
3. Help page for the application.<br />
<br />
4. Videos and related files.<br />
<br />
5. After sales support.</p>
<p><img src="http://www.jvwinc.com/article-extractor-banner.gif" alt="Find article with Article extractor"/></p>
<p>Please contact us through our <a href="http://www.jvwinc.com/network/offering.html">resell rights</a> page from Jvwinc.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=241</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning and error in C#</title>
		<link>http://fullycoded.com/?p=240</link>
		<comments>http://fullycoded.com/?p=240#comments</comments>
		<pubDate>Sun, 25 Jan 2009 13:36:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=240</guid>
		<description><![CDATA[WARNING.CS
===
#warning This is A warning
class zzz
{
//#error This is An error
public static void Main()
{
System.Console.WriteLine(&#8221;MAIN&#8221;);
}
}
===
For other C# code or website scripts source code please visit http://fullycoded.com/
]]></description>
			<content:encoded><![CDATA[<p><strong>WARNING.CS</strong><br />
===</p>
<blockquote><p>#warning This is A warning<br />
class zzz<br />
{<br />
//#error This is An error<br />
public static void Main()<br />
{<br />
System.Console.WriteLine(&#8221;MAIN&#8221;);<br />
}<br />
}</p></blockquote>
<p>===</p>
<p>For other <a href="http://fullycoded.com/index.php?cat=3">C# code</a> or <a href="http://fullycoded.com">website scripts source code please visit http://fullycoded.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=240</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>While and Writeline in c sharp</title>
		<link>http://fullycoded.com/?p=239</link>
		<comments>http://fullycoded.com/?p=239#comments</comments>
		<pubDate>Tue, 09 Dec 2008 14:15:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=239</guid>
		<description><![CDATA[C# code for While and Writeline
1. While1.cs :
class zzz
{
static void Main()
{
int ii;
ii=1;
while ( ii < = 5 )
{
System.Console.WriteLine (&#8221;Hi  {0}&#8221;, ii);
	ii++;
}
}
}
2. Writeline1.cs :
// created on 3/1/2008 at 12:36 AM
class callingfunction
{
	static void Main(){
		System.Console.WriteLine(&#8221;Hundred ={0}&#8221;,100);
	}
}
]]></description>
			<content:encoded><![CDATA[<p><strong>C# code for While and Writeline</strong></p>
<p>1. While1.cs :</p>
<p>class zzz<br />
{<br />
static void Main()<br />
{<br />
int ii;<br />
ii=1;<br />
while ( ii < = 5 )<br />
{<br />
System.Console.WriteLine (&#8221;Hi  {0}&#8221;, ii);<br />
	ii++;<br />
}<br />
}<br />
}</p>
<p>2. Writeline1.cs :</p>
<p>// created on 3/1/2008 at 12:36 AM<br />
class callingfunction<br />
{<br />
	static void Main(){</p>
<p>		System.Console.WriteLine(&#8221;Hundred ={0}&#8221;,100);</p>
<p>	}<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=239</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtual Override</title>
		<link>http://fullycoded.com/?p=238</link>
		<comments>http://fullycoded.com/?p=238#comments</comments>
		<pubDate>Mon, 24 Nov 2008 04:42:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=238</guid>
		<description><![CDATA[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(&#8221;yyy abc&#8221;);}
public virtual void pqr()
{System.Console.WriteLine(&#8221;yyy pqr&#8221;);}
public virtual void xyz()
{System.Console.WriteLine(&#8221;yyy xyz&#8221;);}
}
class xxx : yyy
{
public override void abc()
{System.Console.WriteLine(&#8221;xxx abc&#8221;);}
public new void pqr()
//New means that the function [...]]]></description>
			<content:encoded><![CDATA[<p>Similar to <a href="http://fullycoded.com/?p=237">C# code for virtual</a> we provide you <strong>Virtual OverRide</strong> code</p>
<p>class zzz<br />
{<br />
public static void Main()<br />
{<br />
yyy a = new yyy();xxx b = new xxx();yyy c = new xxx();<br />
a.abc();a.pqr();a.xyz();<br />
b.abc();b.pqr();b.xyz();<br />
c.abc();c.pqr();c.xyz();<br />
}}<br />
class yyy<br />
{<br />
public virtual void abc()<br />
{System.Console.WriteLine(&#8221;yyy abc&#8221;);}<br />
public virtual void pqr()<br />
{System.Console.WriteLine(&#8221;yyy pqr&#8221;);}<br />
public virtual void xyz()<br />
{System.Console.WriteLine(&#8221;yyy xyz&#8221;);}<br />
}<br />
class xxx : yyy<br />
{<br />
public override void abc()<br />
{System.Console.WriteLine(&#8221;xxx abc&#8221;);}<br />
public new void pqr()<br />
//<em>New means that the function pqr is a new function and it has absolutely nothing to do with the pqr in the base class</em><br />
{<br />
System.Console.WriteLine(&#8221;xxx pqr&#8221;);<br />
}<br />
public void xyz()<br />
{<br />
System.Console.WriteLine(&#8221;xxx xyz&#8221;);<br />
}}</p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=238</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtual.cs C# code</title>
		<link>http://fullycoded.com/?p=237</link>
		<comments>http://fullycoded.com/?p=237#comments</comments>
		<pubDate>Wed, 05 Nov 2008 09:10:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=237</guid>
		<description><![CDATA[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(&#8221;yyy abc&#8221;);}
public virtual void pqr()
{System.Console.WriteLine(&#8221;yyy pqr&#8221;);}
public virtual void xyz()
{System.Console.WriteLine(&#8221;yyy xyz&#8221;);}
}
class xxx : yyy
{
public virtual void abc()
{System.Console.WriteLine(&#8221;xxx abc&#8221;);}
public new void pqr()
{System.Console.WriteLine(&#8221;xxx pqr&#8221;);}
public override void xyz()
{System.Console.WriteLine(&#8221;xxx xyz&#8221;);}
}
class vvv : xxx
{
public override void abc()
{System.Console.WriteLine(&#8221;vvv abc&#8221;);}
public void xyz()
{System.Console.WriteLine(&#8221;vvv xyz&#8221;);}
}
Using.cs
===
using System;
using [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Virtual.cs</strong><br />
===</p>
<blockquote><p>class zzz<br />
{<br />
public static void Main()<br />
{<br />
yyy a = new xxx();<br />
yyy b = new vvv();<br />
xxx c = new vvv();<br />
a.abc();a.pqr();a.xyz();b.abc();b.pqr();b.xyz();c.abc();c.pqr();c.xyz();}}<br />
class yyy<br />
{<br />
public void abc()<br />
{System.Console.WriteLine(&#8221;yyy abc&#8221;);}<br />
public virtual void pqr()<br />
{System.Console.WriteLine(&#8221;yyy pqr&#8221;);}<br />
public virtual void xyz()<br />
{System.Console.WriteLine(&#8221;yyy xyz&#8221;);}<br />
}<br />
class xxx : yyy<br />
{<br />
public virtual void abc()<br />
{System.Console.WriteLine(&#8221;xxx abc&#8221;);}<br />
public new void pqr()<br />
{System.Console.WriteLine(&#8221;xxx pqr&#8221;);}<br />
public override void xyz()<br />
{System.Console.WriteLine(&#8221;xxx xyz&#8221;);}<br />
}<br />
class vvv : xxx<br />
{<br />
public override void abc()<br />
{System.Console.WriteLine(&#8221;vvv abc&#8221;);}<br />
public void xyz()<br />
{System.Console.WriteLine(&#8221;vvv xyz&#8221;);}<br />
}</p></blockquote>
<p><strong>Using.cs</strong><br />
===</p>
<blockquote><p>using System;<br />
using ashish;<br />
class zzz {<br />
static void Main()<br />
{<br />
yyy.abc();<br />
}<br />
}<br />
namespace ashish<br />
{<br />
class yyy<br />
{<br />
public static void abc()<br />
{<br />
Console.WriteLine(&#8221;abc&#8221;);<br />
}<br />
}<br />
}<br />
//After the word using you can only write the name of a namespace&#8230;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=237</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unsafe code in C#</title>
		<link>http://fullycoded.com/?p=236</link>
		<comments>http://fullycoded.com/?p=236#comments</comments>
		<pubDate>Tue, 21 Oct 2008 11:47:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=236</guid>
		<description><![CDATA[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 {
unsafe public void abc() {
int [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Unsafe</strong> : This means pointers are allowed in C# code. If you wish to compile <em>unsafe code</em> then should specify the /unsafe compiler option in the command line(This is not required if you are using Visual Studio.NET).</p>
<blockquote><p>
using System;<br />
class zzz {<br />
public static void Main() {<br />
yyy a = new yyy();<br />
a.abc();<br />
}<br />
}<br />
unsafe class yyy {<br />
unsafe public void abc() {<br />
int  *i; //declaring pointer<br />
int j=1;<br />
i = &#038;j; //pointing<br />
Console.WriteLine((int)i);<br />
*i = 10;<br />
Console.WriteLine(j);<br />
}<br />
}
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=236</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# code for Throw</title>
		<link>http://fullycoded.com/?p=235</link>
		<comments>http://fullycoded.com/?p=235#comments</comments>
		<pubDate>Fri, 10 Oct 2008 14:04:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=235</guid>
		<description><![CDATA[class zzz
{
public static void Main()
{
yyy a;
a=new yyy();
try
{
a.abc();
System.Console.WriteLine(&#8221;Bye&#8221;);
}
catch (System.Exception e)
{
System.Console.WriteLine(&#8221;In Exception&#8221;+ e.ToString());
}
System.Console.WriteLine(&#8221;After Exception&#8221;);
System.Console.Read();
}
}
class yyy {
public void abc()
{
throw new System.Exception(&#8221;C# Throw code exception&#8221;);
System.Console.WriteLine(&#8221;C# Throw code&#8220;);
}
}
]]></description>
			<content:encoded><![CDATA[<p>class zzz<br />
{<br />
public static void Main()<br />
{<br />
yyy a;<br />
a=new yyy();<br />
try<br />
{<br />
a.abc();<br />
System.Console.WriteLine(&#8221;Bye&#8221;);<br />
}<br />
catch (System.Exception e)<br />
{<br />
System.Console.WriteLine(&#8221;In Exception&#8221;+ e.ToString());<br />
}<br />
System.Console.WriteLine(&#8221;After Exception&#8221;);<br />
System.Console.Read();<br />
}<br />
}<br />
class yyy {<br />
public void abc()<br />
{<br />
throw new System.Exception(&#8221;C# Throw code exception&#8221;);<br />
System.Console.WriteLine(&#8221;<strong>C# Throw code</strong>&#8220;);<br />
}<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=235</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Threads in C# programming</title>
		<link>http://fullycoded.com/?p=234</link>
		<comments>http://fullycoded.com/?p=234#comments</comments>
		<pubDate>Tue, 30 Sep 2008 13:30:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://fullycoded.com/?p=234</guid>
		<description><![CDATA[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 + &#8221; &#8220;);
}
}
public void pqr()
{
for ( int i = 0; i]]></description>
			<content:encoded><![CDATA[<p>1. <strong>C# Threads Example 1</strong><br />
using System.Threading;<br />
public class yyy<br />
{<br />
public void abc()<br />
{<br />
for ( int i = 0; i< =3;i++)<br />
{<br />
System.Console.Write(i + &#8221; &#8220;);<br />
}<br />
}<br />
public void pqr()<br />
{<br />
for ( int i = 0; i<=3;i++)<br />
{<br />
Thread.Sleep(1000);<br />
System.Console.Write(i+ &#8220;&#8230;&#8221;);<br />
}<br />
}<br />
}<br />
public class zzz<br />
{<br />
public static void Main()<br />
{<br />
yyy a = new yyy();<br />
Thread  t = new Thread(new ThreadStart(a.abc));<br />
Thread  t1 = new Thread(new ThreadStart(a.pqr));<br />
t.Start();<br />
t1.Start();<br />
}<br />
}</p>
<p>2. Example 2 of threading in C Sharp (C#)<br />
using System;<br />
using System.Threading;</p>
<p>class App {<br />
   public static void Main() {</p>
<p>      Console.WriteLine(&#8221;   (Hit or Press Enter to terminate the sample)&#8221;);<br />
      Timer timer = new Timer(new TimerCallback(CheckStatus), null, 1, 2000);</p>
<p>      Console.WriteLine(&#8221;Press Enter to close window&#8221;);<br />
      Console.Read();<br />
   }</p>
<p>   // The callback method&#8217;s signature MUST match that of a System.Threading.TimerCallback<br />
   // delegate (it takes an Object parameter and returns void)<br />
   static void CheckStatus(Object state) {<br />
      Console.WriteLine(&#8221;Threads in C # sharp&#8221;);</p>
<p>   }<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://fullycoded.com/?feed=rss2&amp;p=234</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
