<?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>Tech-Recipes&#187; C programming</title>
	<atom:link href="http://www.tech-recipes.com/category/computer-programming/c-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Sat, 21 Nov 2009 03:54:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Get Web Page Contents in Code with C#</title>
		<link>http://www.tech-recipes.com/rx/1954/get_web_page_contents_in_code_with_csharp/</link>
		<comments>http://www.tech-recipes.com/rx/1954/get_web_page_contents_in_code_with_csharp/#comments</comments>
		<pubDate>Wed, 27 Dec 2006 11:12:17 +0000</pubDate>
		<dc:creator>johnnythawte</dc:creator>
				<category><![CDATA[C programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[When you are developing an application that needs to access data stored on a web server, you can easily get the contents of a web page with this simple C# function.
(...)Read the rest of Get Web Page Contents in Code with C# 

© johnnythawte for Tech-Recipes, 2006. &#124;
Permalink &#124;
8 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1954/get_web_page_contents_in_code_with_csharp/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Pause Output From a Command Line Application in .NET Debug Mode</title>
		<link>http://www.tech-recipes.com/rx/1947/pause_output_from_a_command_line_application_in_net_debug_mode/</link>
		<comments>http://www.tech-recipes.com/rx/1947/pause_output_from_a_command_line_application_in_net_debug_mode/#comments</comments>
		<pubDate>Fri, 22 Dec 2006 10:21:37 +0000</pubDate>
		<dc:creator>johnnythawte</dc:creator>
				<category><![CDATA[C programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[If you are writing a command line application in .NET, you might notice that the application closes immediately if you haven&#8217;t set a breakpoint. This recipe shows you the one line method to keep the application open so you can see the output.
(...)Read the rest of Pause Output From a Command Line Application in .NET [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1947/pause_output_from_a_command_line_application_in_net_debug_mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make System Tray Based Application in .NET</title>
		<link>http://www.tech-recipes.com/rx/1945/make_system_tray_based_application_in_net/</link>
		<comments>http://www.tech-recipes.com/rx/1945/make_system_tray_based_application_in_net/#comments</comments>
		<pubDate>Wed, 20 Dec 2006 20:21:00 +0000</pubDate>
		<dc:creator>johnnythawte</dc:creator>
				<category><![CDATA[C programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[Creating an application that lives in the system tray is easy, but it is not entirely obvious how to do so in Visual Studio. This recipe will show you the steps.
(...)Read the rest of Make System Tray Based Application in .NET 

© johnnythawte for Tech-Recipes, 2006. &#124;
Permalink &#124;
6 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1945/make_system_tray_based_application_in_net/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Open a URL in the Default Browser in Your .NET Application</title>
		<link>http://www.tech-recipes.com/rx/1919/open_a_url_in_the_default_browser_in_your_net_application/</link>
		<comments>http://www.tech-recipes.com/rx/1919/open_a_url_in_the_default_browser_in_your_net_application/#comments</comments>
		<pubDate>Mon, 11 Dec 2006 07:16:43 +0000</pubDate>
		<dc:creator>johnnythawte</dc:creator>
				<category><![CDATA[C programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[Virtually every application these days requires at least some connection to the internet. Letting the user click a link and open it in their browser is essential. This recipe shows you the 1 line method of doing so.
(...)Read the rest of Open a URL in the Default Browser in Your .NET Application 

© johnnythawte for [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1919/open_a_url_in_the_default_browser_in_your_net_application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pass Variables to a New Thread in C#</title>
		<link>http://www.tech-recipes.com/rx/1915/pass_variables_to_a_new_thread_in_c/</link>
		<comments>http://www.tech-recipes.com/rx/1915/pass_variables_to_a_new_thread_in_c/#comments</comments>
		<pubDate>Sat, 09 Dec 2006 20:44:55 +0000</pubDate>
		<dc:creator>johnnythawte</dc:creator>
				<category><![CDATA[C programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[When you create a new thread in .net 1.1, you cannot pass any parameters to the ThreadStart delegate, which makes passing startup variables difficult. This recipe shows you an easy workaround.
(...)Read the rest of Pass Variables to a New Thread in C# 

© johnnythawte for Tech-Recipes, 2006. &#124;
Permalink &#124;
2 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1915/pass_variables_to_a_new_thread_in_c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Load an Icon from an Embedded Resource in .NET</title>
		<link>http://www.tech-recipes.com/rx/1913/load_an_icon_from_an_embedded_resource_in_net/</link>
		<comments>http://www.tech-recipes.com/rx/1913/load_an_icon_from_an_embedded_resource_in_net/#comments</comments>
		<pubDate>Sat, 09 Dec 2006 04:56:20 +0000</pubDate>
		<dc:creator>johnnythawte</dc:creator>
				<category><![CDATA[C programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[When you are developing a Windows Forms application in .NET, it&#8217;s not immediately obvious how to programatically load an icon file embedded in your executable. This recipe shows you the 1 line solution.
(...)Read the rest of Load an Icon from an Embedded Resource in .NET 

© johnnythawte for Tech-Recipes, 2006. &#124;
Permalink &#124;
1 comment &#124;
Add to
del.icio.us

Post [...]]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1913/load_an_icon_from_an_embedded_resource_in_net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C/C++ Doubly Linked List</title>
		<link>http://www.tech-recipes.com/rx/1469/cc-doubly-linked-list/</link>
		<comments>http://www.tech-recipes.com/rx/1469/cc-doubly-linked-list/#comments</comments>
		<pubDate>Sun, 25 Jun 2006 22:14:26 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[C programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[The implementation of a doubly linked list, remove prev pointer for a singly linked list
(...)Read the rest of C/C++ Doubly Linked List 

© William_Wilson for Tech-Recipes, 2006. &#124;
Permalink &#124;
2 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1469/cc-doubly-linked-list/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>C++: Template Classes</title>
		<link>http://www.tech-recipes.com/rx/1268/c-template-classes/</link>
		<comments>http://www.tech-recipes.com/rx/1268/c-template-classes/#comments</comments>
		<pubDate>Tue, 14 Mar 2006 12:49:08 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[C programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[How to layout a template class and what it&#8217;s good for.
(...)Read the rest of C++: Template Classes 

© William_Wilson for Tech-Recipes, 2006. &#124;
Permalink &#124;
0 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1268/c-template-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C++: Pointers, Pass by Value, Pass by Reference</title>
		<link>http://www.tech-recipes.com/rx/1232/c-pointers-pass-by-value-pass-by-reference/</link>
		<comments>http://www.tech-recipes.com/rx/1232/c-pointers-pass-by-value-pass-by-reference/#comments</comments>
		<pubDate>Wed, 01 Mar 2006 08:32:04 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[C programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[You just can&#8217;t properly explain pointers, without first knowing the basics of passing by value/reference.
(...)Read the rest of C++: Pointers, Pass by Value, Pass by Reference 

© William_Wilson for Tech-Recipes, 2006. &#124;
Permalink &#124;
2 comments &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1232/c-pointers-pass-by-value-pass-by-reference/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>C++: Destructor</title>
		<link>http://www.tech-recipes.com/rx/1231/c-destructor/</link>
		<comments>http://www.tech-recipes.com/rx/1231/c-destructor/#comments</comments>
		<pubDate>Wed, 01 Mar 2006 07:45:10 +0000</pubDate>
		<dc:creator>William_Wilson</dc:creator>
				<category><![CDATA[C programming]]></category>

		<guid isPermaLink="false">guid-fix-me!</guid>
		<description><![CDATA[The implementation of C++&#8217;s Destructor efficiently
(...)Read the rest of C++: Destructor 

© William_Wilson for Tech-Recipes, 2006. &#124;
Permalink &#124;
1 comment &#124;
Add to
del.icio.us

Post tags: 
]]></description>
		<wfw:commentRss>http://www.tech-recipes.com/rx/1231/c-destructor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
