<?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>Tips n Tracks &#187; C# Language</title>
	<atom:link href="http://www.tipsntracks.com/category/c-language/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tipsntracks.com</link>
	<description>knowledge Is Power</description>
	<lastBuildDate>Tue, 01 Jun 2010 17:23:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Working with System.DateTime &#8211; Date and Time String Formatting with C#</title>
		<link>http://www.tipsntracks.com/343/working-with-system-datetime-date-and-time-string-formatting-with-c-sharp.html</link>
		<comments>http://www.tipsntracks.com/343/working-with-system-datetime-date-and-time-string-formatting-with-c-sharp.html#comments</comments>
		<pubDate>Tue, 06 Apr 2010 10:42:13 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[C# Language]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=343</guid>
		<description><![CDATA[Working with System.DateTime &#8211; Date and Time String Formatting with C# Software Development with C# needs to work with dates and times. To work efficiently with Date and Time .NET has the System.DateTime (DateTime) namespace to help us. You can use DateTime to get DateTime values, generate new DateTime values and format DateTime values (parse [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/343/working-with-system-datetime-date-and-time-string-formatting-with-c-sharp.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GridView Custom Paging in ASP.NET 3.5 with SQL Server Stored Procedure</title>
		<link>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html</link>
		<comments>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html#comments</comments>
		<pubDate>Mon, 15 Feb 2010 18:13:20 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=316</guid>
		<description><![CDATA[GridView Custom Paging in ASP.NET 3.5 with SQL Server Stored Procedure GridView — Displays a set of data items in an HTML table. ASP.NET GridView control enables you to display, sort, page, select, and edit data. Default gridview paging works best when you deal with limited pages. If there are more pages then, the performance [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/316/gridview-custom-paging-in-asp-net-3-5-with-sql-server-stored-procedure.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Pause a Console Application for User Input</title>
		<link>http://www.tipsntracks.com/308/pause-a-console-application-for-user-input.html</link>
		<comments>http://www.tipsntracks.com/308/pause-a-console-application-for-user-input.html#comments</comments>
		<pubDate>Sat, 19 Dec 2009 18:46:31 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[C# Language]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=308</guid>
		<description><![CDATA[Pause a Console Application for User Input or Pause Command in a Console Application While working with C# or VB.NET Console Applications, you may require to pause for the user input or display a message to the user. Console application window get exit as the program execution finished. Following Piece of code will do it [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/308/pause-a-console-application-for-user-input.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Read XML data from a URL by using Visual C#</title>
		<link>http://www.tipsntracks.com/305/read-xml-data-from-a-url-by-using-visual-c.html</link>
		<comments>http://www.tipsntracks.com/305/read-xml-data-from-a-url-by-using-visual-c.html#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:20:29 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[C# Language]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=305</guid>
		<description><![CDATA[Read XML data from a URL by using Visual C# C# has a powerful and flexible namespace System.Xml to manipulate XML. System.Xml namespace provides the XMLTextReader class to read XML (Extensible Markup Language) from a URL (Uniform Resource Locator). Now we want to read xml file test.xml (http://localhost/test.xml) located at your localhost. You can also [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/305/read-xml-data-from-a-url-by-using-visual-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Last line in the text using regular expressions with .net</title>
		<link>http://www.tipsntracks.com/301/finding-last-line-in-the-text-using-regular-expressions-with-net.html</link>
		<comments>http://www.tipsntracks.com/301/finding-last-line-in-the-text-using-regular-expressions-with-net.html#comments</comments>
		<pubDate>Wed, 16 Dec 2009 07:20:13 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=301</guid>
		<description><![CDATA[Finding Last line in the text using regular expressions with .net In this regular expressions, we are going to find last line in the text. Regular Expression Pattern .+Z$ A description of the regular expression: Any character, one or more repetitions End of string or before new line at end of string End of line [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/301/finding-last-line-in-the-text-using-regular-expressions-with-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding First line in the text using regular expressions with .net</title>
		<link>http://www.tipsntracks.com/299/finding-first-line-in-the-text-using-regular-expressions-with-net.html</link>
		<comments>http://www.tipsntracks.com/299/finding-first-line-in-the-text-using-regular-expressions-with-net.html#comments</comments>
		<pubDate>Wed, 16 Dec 2009 07:16:53 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=299</guid>
		<description><![CDATA[Finding First line in the text using regular expressions with .net In this regular expressions, we are going to find first line in the text. Regular Expression Pattern \A.* A description of the regular expression: Beginning of string Any character, any number of repetitions How It Works This regular expression will check for Beginning of [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/299/finding-first-line-in-the-text-using-regular-expressions-with-net.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finding each line in the text using regular expressions with .net</title>
		<link>http://www.tipsntracks.com/297/finding-each-line-in-the-text-using-regular-expressions-with-net.html</link>
		<comments>http://www.tipsntracks.com/297/finding-each-line-in-the-text-using-regular-expressions-with-net.html#comments</comments>
		<pubDate>Wed, 16 Dec 2009 06:35:49 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=297</guid>
		<description><![CDATA[Finding each line in the text using regular expressions with .net In this regular expressions, we are going to find each line in the text. Regular Expression Pattern ^.*$ A description of the regular expression: Beginning of line or string Any character, any number of repetitions End of line or strin Sucessful Matches This is [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/297/finding-each-line-in-the-text-using-regular-expressions-with-net.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finding Sentence using regular expressions with .net</title>
		<link>http://www.tipsntracks.com/294/finding-sentence-using-regular-expressions-with-net.html</link>
		<comments>http://www.tipsntracks.com/294/finding-sentence-using-regular-expressions-with-net.html#comments</comments>
		<pubDate>Sun, 13 Dec 2009 18:39:06 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/294/finding-sentence-using-regular-expressions-with-net.html</guid>
		<description><![CDATA[Finding Sentence using regular expressions with .net In the field of linguistics, a sentence —an expression in natural language— is often defined to indicate a grammatical and lexical unit consisting of one or more words that represent distinct concepts. A sentence can include words grouped meaningfully to express a statement, question, exclamation, request or command. [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/294/finding-sentence-using-regular-expressions-with-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Similar Words (like bat, cat, mat)using regular expressions with .net</title>
		<link>http://www.tipsntracks.com/283/finding-similar-wordslike-bat-cat-matusing-regular-expressions-with-net.html</link>
		<comments>http://www.tipsntracks.com/283/finding-similar-wordslike-bat-cat-matusing-regular-expressions-with-net.html#comments</comments>
		<pubDate>Sat, 21 Nov 2009 18:14:21 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=283</guid>
		<description><![CDATA[Finding Similar Words (like bat, cat, mat)using regular expressions with .net In this regular expression we are going to find out Similar Words like bat, cat, mat, and rat. Just take a look at above words they all same ending &#34;at&#34;. Regular Expression Pattern \b[a-zA-Z](at\b) A description of the regular expression: First or last character [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/283/finding-similar-wordslike-bat-cat-matusing-regular-expressions-with-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started with C# Object-Oriented Programming</title>
		<link>http://www.tipsntracks.com/279/getting-started-with-c-object-oriented-programming.html</link>
		<comments>http://www.tipsntracks.com/279/getting-started-with-c-object-oriented-programming.html#comments</comments>
		<pubDate>Tue, 10 Nov 2009 15:19:36 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[C# Language]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/279/getting-started-with-c-object-oriented-programming.html</guid>
		<description><![CDATA[Getting Started with C# Object-Oriented Programming C# is a powerful and flexible programming language provides several features. Like all programming languages, it can be used to create a variety of applications. C# is an object-oriented programming language developed by Microsoft as part of the .NET Visual Studio and later approved as a standard by ECMA [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/279/getting-started-with-c-object-oriented-programming.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Introduction to Microsoft Visual C# 2008 Programming Language</title>
		<link>http://www.tipsntracks.com/213/introduction-to-microsoft-visual-c-2008-programming-language.html</link>
		<comments>http://www.tipsntracks.com/213/introduction-to-microsoft-visual-c-2008-programming-language.html#comments</comments>
		<pubDate>Sun, 04 Oct 2009 08:52:57 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[C# Language]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/213/introduction-to-microsoft-visual-c-2008-programming-language.html</guid>
		<description><![CDATA[Introduction to Microsoft Visual C# 2008 Programming Language Microsoft released .NET Framework 3.5 on November 19, 2007. Along with it, was released Microsoft Visual Studio 2008. Microsoft Visual Studio 2008 &#8211; Code Name &#34;Orcas&#34;, is the successor to Microsoft Visual Studio 2005. Visual C# 2008 is the member of Microsoft Visual Studio 2008 family, which [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/213/introduction-to-microsoft-visual-c-2008-programming-language.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Images in .Net with Bitmap and Graphics objects</title>
		<link>http://www.tipsntracks.com/199/creating-images-in-net-with-bitmap-and-graphics-objects.html</link>
		<comments>http://www.tipsntracks.com/199/creating-images-in-net-with-bitmap-and-graphics-objects.html#comments</comments>
		<pubDate>Thu, 13 Aug 2009 09:27:10 +0000</pubDate>
		<dc:creator>Anil kumar Pandey</dc:creator>
				<category><![CDATA[C# Language]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=199</guid>
		<description><![CDATA[Creating images in .Net is not a big task.This can be done using a bitmap object &#38; graphics object. Using thease objcts we can create our own images or any graphicle objects. Public Void CreateImage&#40;&#41; &#123; System.Drawing.Bitmap objBMP = new System.Drawing.Bitmap&#40;1500, 600&#41;; &#160; System.Drawing.Graphics objGraph = System.Drawing.Graphics.FromImage&#40;objBMP&#41;; objGraph.Clear&#40;System.Drawing.Color.Gray&#41;; objGraph.DrawString&#40;&#34;Hello Anil.&#34;, new System.Drawing.Font&#40;&#34;Courier&#34;, 10&#41;, Brushes.Green, 70, [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/199/creating-images-in-net-with-bitmap-and-graphics-objects.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Variations in a Words using regular expressions with .net</title>
		<link>http://www.tipsntracks.com/197/finding-variations-in-a-words-using-regular-expressions-with-net.html</link>
		<comments>http://www.tipsntracks.com/197/finding-variations-in-a-words-using-regular-expressions-with-net.html#comments</comments>
		<pubDate>Mon, 20 Jul 2009 15:49:39 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=197</guid>
		<description><![CDATA[Finding Variations in a Words (like John, Johny, Jon, Jonathan) using regular expressions with .net In this regular expression we are going to find out variations in a Words like John, Johny, Jon, Jonathan. Just take a look at above words they all same begining &#34;jo&#34;. Regular Expression Pattern \b[jJ]o\w*\b A description of the regular [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/197/finding-variations-in-a-words-using-regular-expressions-with-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding words or String with same beginning and end using regular expressions with .net</title>
		<link>http://www.tipsntracks.com/193/finding-words-or-string-with-same-beginning-and-end-using-regular-expressions-with-net.html</link>
		<comments>http://www.tipsntracks.com/193/finding-words-or-string-with-same-beginning-and-end-using-regular-expressions-with-net.html#comments</comments>
		<pubDate>Wed, 03 Jun 2009 17:59:48 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=193</guid>
		<description><![CDATA[Finding words or String with same beginning and end using regular expressions with .net In this regular expression we are going to find words or String with same beginning and end. Means we are going to search words like xerox with same beginning and end &#34;x&#34;. Regular Expression Pattern \b(?&#60;First&#62;\w{1,})(?&#60;Second&#62;\w+)(?(Second)\k&#60;First&#62;)\b A description of the regular [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/193/finding-words-or-string-with-same-beginning-and-end-using-regular-expressions-with-net.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finding all words starting with &#8220;re&#8221; using regular expressions with .net</title>
		<link>http://www.tipsntracks.com/187/finding-all-words-starting-with-re-using-regular-expressions-with-net.html</link>
		<comments>http://www.tipsntracks.com/187/finding-all-words-starting-with-re-using-regular-expressions-with-net.html#comments</comments>
		<pubDate>Tue, 02 Jun 2009 07:44:36 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=187</guid>
		<description><![CDATA[Finding all words starting with &#34;re&#34; using regular expressions with .net In this regular expression we are going to find all words starting with &#34;re&#34;. Means we are going to search words beginning(first two character) will be &#34;re&#34;. Regular Expression Pattern (\bre)\w+\b A description of the regular expression: [1]: A numbered capture group. [\bre] \bre [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/187/finding-all-words-starting-with-re-using-regular-expressions-with-net.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finding all words ending with &#8220;ing&#8221; using regular expressions with .net</title>
		<link>http://www.tipsntracks.com/184/finding-all-words-ending-with-ing-using-regular-expressions-with-net.html</link>
		<comments>http://www.tipsntracks.com/184/finding-all-words-ending-with-ing-using-regular-expressions-with-net.html#comments</comments>
		<pubDate>Mon, 01 Jun 2009 17:41:08 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=184</guid>
		<description><![CDATA[Finding all words ending with &#34;ing&#34; using regular expressions with .net In this regular expression we are going to find all words ending with &#34;ing&#34;. Means we are going to search words ending(last three character) will be &#34;ing&#34;. Regular Expression Pattern \b\w+(ing\b) A description of the regular expression: \b\w+ First or last character in a [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/184/finding-all-words-ending-with-ing-using-regular-expressions-with-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Regular Expressions Hexadecimal RGB color code validation with .net</title>
		<link>http://www.tipsntracks.com/153/regular-expressions-hexadecimal-rgb-color-code-validation-with-net.html</link>
		<comments>http://www.tipsntracks.com/153/regular-expressions-hexadecimal-rgb-color-code-validation-with-net.html#comments</comments>
		<pubDate>Fri, 08 May 2009 05:15:09 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=153</guid>
		<description><![CDATA[Regular Expressions Hexadecimal RGB color code validation with .net Hexadecimal RGB color also known as Web colors are colors used in designing web pages. Authors of web pages have a variety of options available for specifying colors for elements of web documents. Colors may be specified as an RGB triplet in hexadecimal format (a hex [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/153/regular-expressions-hexadecimal-rgb-color-code-validation-with-net.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Regular Expressions Hexadecimal number validation with .net</title>
		<link>http://www.tipsntracks.com/150/regular-expressions-hexadecimal-number-validation-with-net.html</link>
		<comments>http://www.tipsntracks.com/150/regular-expressions-hexadecimal-number-validation-with-net.html#comments</comments>
		<pubDate>Thu, 07 May 2009 04:37:04 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=150</guid>
		<description><![CDATA[Regular Expressions Hexadecimal number validation with .net In mathematics and computer science, hexadecimal (also base-16, hexa, or hex) is a numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A, B, C, D, E, F (or a through [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/150/regular-expressions-hexadecimal-number-validation-with-net.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>List All System Drives using C#.NET</title>
		<link>http://www.tipsntracks.com/135/list-all-system-drives-using-cnet.html</link>
		<comments>http://www.tipsntracks.com/135/list-all-system-drives-using-cnet.html#comments</comments>
		<pubDate>Sun, 03 May 2009 13:31:00 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[C# Language]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=135</guid>
		<description><![CDATA[List All System Drives using C#.NET This tip will explain how to get the computer&#8217;s logical drives from the local system. The code will work on flavors of C#.net. First of Create new C#.Net Console Application, you can do same by pressing Ctrl+Shift+N Now replace you Program.cs file content with following… using System; using System.Collections.Generic; [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/135/list-all-system-drives-using-cnet.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Four and(or) Six letter words using regular expressions</title>
		<link>http://www.tipsntracks.com/132/finding-four-andor-six-letter-words-using-regular-expressions.html</link>
		<comments>http://www.tipsntracks.com/132/finding-four-andor-six-letter-words-using-regular-expressions.html#comments</comments>
		<pubDate>Sun, 03 May 2009 11:40:36 +0000</pubDate>
		<dc:creator>Chetankumar Akarte</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C# Language]]></category>
		<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://www.tipsntracks.com/?p=132</guid>
		<description><![CDATA[Finding Four and(or) Six letter words using regular expressions In this regular expression we are going to find out All Four to Six letter words. A word is a unit (member) of language that represents a concept which can be expressively communicated with meaning. A word consists of one or more morphemes which are linked [...]]]></description>
		<wfw:commentRss>http://www.tipsntracks.com/132/finding-four-andor-six-letter-words-using-regular-expressions.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
