<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>C# Tips &#187; Uncategorized</title>
	<atom:link href="http://csharptips.wordpress.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://csharptips.wordpress.com</link>
	<description>my technical experience regarding C# programming</description>
	<lastBuildDate>Tue, 01 Dec 2009 06:15:48 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='csharptips.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bb4e4f1dc70d95a023d9eb43d0b91064?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>C# Tips &#187; Uncategorized</title>
		<link>http://csharptips.wordpress.com</link>
	</image>
			<item>
		<title>Multiple Cell Selection in DataGridView</title>
		<link>http://csharptips.wordpress.com/2009/09/09/multiple-cell-selection-in-datagridview/</link>
		<comments>http://csharptips.wordpress.com/2009/09/09/multiple-cell-selection-in-datagridview/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 11:12:32 +0000</pubDate>
		<dc:creator>SkilledDeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[DataGridView]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[Multi cell Select]]></category>
		<category><![CDATA[Range Select]]></category>

		<guid isPermaLink="false">http://csharptips.wordpress.com/?p=43</guid>
		<description><![CDATA[DataGridView has a facility to select multiple cells (or a range of cells) using mouse dragging, Cltrl+Click or Shift+Click. This feature is similar to cell selection in spreadsheet applications such as Microsoft Excel.
In order to enable this feature in DataGridView, use &#8216;SelectionMode&#8216; property as follows:
DataGridViewCell.SelectionMode = DataGridViewSelectionMode.CellSelect;
To read/write data from/to selected cells simply write:
foreach (DataGridViewCell [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=43&subd=csharptips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>DataGridView has a facility to select multiple cells (or a range of cells) using mouse dragging, Cltrl+Click or Shift+Click. This feature is similar to cell selection in spreadsheet applications such as Microsoft Excel.</p>
<p>In order to enable this feature in DataGridView, use &#8216;<strong>SelectionMode</strong>&#8216; property as follows:</p>
<p>DataGridViewCell.SelectionMode = DataGridViewSelectionMode.CellSelect;</p>
<p>To read/write data from/to selected cells simply write:</p>
<p>foreach (DataGridViewCell cell in dataGridView1.SelectedCells)</p>
<p>{</p>
<p>//read cell data</p>
<p>MessageBox.Show(cell.Value.ToString());</p>
<p>//change cell data</p>
<p>dataGridView1.Rows[cell.RowIndex].Cells[cell.ColumnIndex].Value = 1;</p>
<p>}</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/csharptips.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/csharptips.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/csharptips.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/csharptips.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/csharptips.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/csharptips.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/csharptips.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/csharptips.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/csharptips.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/csharptips.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=43&subd=csharptips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://csharptips.wordpress.com/2009/09/09/multiple-cell-selection-in-datagridview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b032187903bdb8726b9b3f840c04ab7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">SkilledDeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Sorting</title>
		<link>http://csharptips.wordpress.com/2009/05/16/sorting/</link>
		<comments>http://csharptips.wordpress.com/2009/05/16/sorting/#comments</comments>
		<pubDate>Sat, 16 May 2009 05:36:43 +0000</pubDate>
		<dc:creator>SkilledDeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[BindingSource]]></category>
		<category><![CDATA[Sorting]]></category>

		<guid isPermaLink="false">http://csharptips.wordpress.com/2009/05/16/sorting/</guid>
		<description><![CDATA[There are several ways to sort data in C# but one of the easiest ways is using BindingSource sort capability.
Depending on what object (underlying list) is linked to the BindingSource as its DataSource and whether it has implemented IBindingList or IBindingListView interfaces or not, you can use this feature.
To find out whether a BindingSource with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=40&subd=csharptips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There are several ways to sort data in C# but one of the easiest ways is using BindingSource sort capability.<br />
Depending on what object (underlying list) is linked to the BindingSource as its DataSource and whether it has implemented IBindingList or IBindingListView interfaces or not, you can use this feature.</p>
<p>To find out whether a BindingSource with current DataSource supports sorting, use SupportsSorting property:</p>
<p>if bindingSource1.SupportsSorting<br />
{<br />
	bindingSource1.Sort = &#8220;Code, Name&#8221;;<br />
}</p>
<p>Similary, you can benefit from BindingSource.Filter .</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/csharptips.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/csharptips.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/csharptips.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/csharptips.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/csharptips.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/csharptips.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/csharptips.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/csharptips.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/csharptips.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/csharptips.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=40&subd=csharptips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://csharptips.wordpress.com/2009/05/16/sorting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b032187903bdb8726b9b3f840c04ab7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">SkilledDeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Using SelectionChangeCommitted event of ComboBox</title>
		<link>http://csharptips.wordpress.com/2009/05/12/using-selectionchangecommitted-event-of-combobox/</link>
		<comments>http://csharptips.wordpress.com/2009/05/12/using-selectionchangecommitted-event-of-combobox/#comments</comments>
		<pubDate>Tue, 12 May 2009 05:19:10 +0000</pubDate>
		<dc:creator>SkilledDeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ComboBox]]></category>

		<guid isPermaLink="false">http://csharptips.wordpress.com/2009/05/12/using-selectionchangecommitted-event-of-combobox/</guid>
		<description><![CDATA[If you want to capture changes in ComboBox you can use &#8216;SelectedIndexChanged&#8217; or &#8216;SelectedValueChanged&#8217; events. However, if you want to get changes only when the user changes the selection, use &#8216;SelectionChangeCommitted&#8217; event instead.
SelectionChangeCommitted occurs only when the ComboBox selection changes by user (via keyboard or mouse) and it is not raised when the selection changes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=36&subd=csharptips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you want to capture changes in ComboBox you can use &#8216;SelectedIndexChanged&#8217; or &#8216;SelectedValueChanged&#8217; events. However, if you want to get changes only when the user changes the selection, use &#8216;SelectionChangeCommitted&#8217; event instead.</p>
<p><strong>SelectionChangeCommitted</strong> occurs only when the ComboBox selection changes by user (via keyboard or mouse) and it is not raised when the selection changes programmatically.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/csharptips.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/csharptips.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/csharptips.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/csharptips.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/csharptips.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/csharptips.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/csharptips.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/csharptips.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/csharptips.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/csharptips.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=36&subd=csharptips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://csharptips.wordpress.com/2009/05/12/using-selectionchangecommitted-event-of-combobox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b032187903bdb8726b9b3f840c04ab7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">SkilledDeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>String Replicate</title>
		<link>http://csharptips.wordpress.com/2009/02/03/string-replicate/</link>
		<comments>http://csharptips.wordpress.com/2009/02/03/string-replicate/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 11:30:50 +0000</pubDate>
		<dc:creator>SkilledDeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[repeat]]></category>
		<category><![CDATA[replicate]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://csharptips.wordpress.com/?p=29</guid>
		<description><![CDATA[The simplest way to replicate (repeat) a string in C# is using string class constructor:
string s = new string(&#8216;#&#8217;, 4); //result: ####
If you want to replicate a sub-string (not only a char), use this:
string.Concat(System.Collections.ArrayList.Repeat(&#8220;##&#8221;,4).ToArray());
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=29&subd=csharptips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The simplest way to replicate (repeat) a string in C# is using string class constructor:<br />
string s = new string(&#8216;#&#8217;, 4); //result: ####</p>
<p>If you want to replicate a sub-string (not only a char), use this:<br />
string.Concat(System.Collections.ArrayList.Repeat(&#8220;##&#8221;,4).ToArray());</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/csharptips.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/csharptips.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/csharptips.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/csharptips.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/csharptips.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/csharptips.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/csharptips.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/csharptips.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/csharptips.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/csharptips.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=29&subd=csharptips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://csharptips.wordpress.com/2009/02/03/string-replicate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b032187903bdb8726b9b3f840c04ab7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">SkilledDeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>The Beginning of the End</title>
		<link>http://csharptips.wordpress.com/2009/01/17/the-beginning-of-the-end/</link>
		<comments>http://csharptips.wordpress.com/2009/01/17/the-beginning-of-the-end/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 05:45:17 +0000</pubDate>
		<dc:creator>SkilledDeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[LINQ to SQL]]></category>
		<category><![CDATA[OR Mapper]]></category>

		<guid isPermaLink="false">http://csharptips.wordpress.com/?p=8</guid>
		<description><![CDATA[I studied most of the book and I was evaluated by a couple of .NET experts in the end. The interview was successful and I officially started developing database applications in C#.
I try to update here as soon as I learn new techniques, tips and tricks. For now, I start with &#8221; LINQ to SQL&#8221;.
LINQ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=8&subd=csharptips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I studied most of the book and I was evaluated by a couple of .NET experts in the end. The interview was successful and I officially started developing database applications in C#.</p>
<p>I try to update here as soon as I learn new techniques, tips and tricks. For now, I start with &#8221; LINQ to SQL&#8221;.<br />
LINQ to SQL is a kind of sophisticated OR Mapper (Object Relational Mapper) which has several useful features that results easier and simpler development.</p>
<p>This is what Microsoft experts say:<br />
&#8220;LINQ to SQL provides a runtime infrastructure for managing relational data as objects without losing the ability to query. Your application is free to manipulate the objects while LINQ to SQL stays in the background tracking your changes automatically.&#8221;</p>
<p>For more information please visit:  <a title="http://msdn.microsoft.com/en-us/library/bb425822.aspx" href="http://msdn.microsoft.com/en-us/library/bb425822.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/bb425822.aspx</a></p>
<p>P.S.<br />
A friend of mine who showed me the capabilities of LINQ to SQL, also said that this technology is obsolete right now and &#8220;Entity Framework&#8221; should probably be replaced with it. Entity Framework version 1 was released with .NET framework 3.5 service pack 1 and the next version will be released by .NET framework 4.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/csharptips.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/csharptips.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/csharptips.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/csharptips.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/csharptips.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/csharptips.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/csharptips.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/csharptips.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/csharptips.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/csharptips.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=8&subd=csharptips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://csharptips.wordpress.com/2009/01/17/the-beginning-of-the-end/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b032187903bdb8726b9b3f840c04ab7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">SkilledDeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>Merry Christmas!</title>
		<link>http://csharptips.wordpress.com/2008/12/26/long-time-no-update/</link>
		<comments>http://csharptips.wordpress.com/2008/12/26/long-time-no-update/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 17:29:09 +0000</pubDate>
		<dc:creator>SkilledDeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://csharptips.wordpress.com/2008/12/26/long-time-no-update/</guid>
		<description><![CDATA[Long time no update&#8230;
I couldn&#8217;t start reading the book until last week.
It&#8217;s an interesting book and help you to switch to C# in the shortest possible time.
For me, with software designing and programming background, many concepts are similar but of course there are a few new features such as Generics, Attributes, etc. that weren&#8217;t in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=6&subd=csharptips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Long time no update&#8230;</p>
<p>I couldn&#8217;t start reading the book until last week.<br />
It&#8217;s an interesting book and help you to switch to C# in the shortest possible time.<br />
For me, with software designing and programming background, many concepts are similar but of course there are a few new features such as Generics, Attributes, etc. that weren&#8217;t in Delphi.<br />
I have been reading two chapters a day and I&#8217;m currently reading the 12th chapter.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/csharptips.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/csharptips.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/csharptips.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/csharptips.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/csharptips.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/csharptips.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/csharptips.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/csharptips.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/csharptips.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/csharptips.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=6&subd=csharptips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://csharptips.wordpress.com/2008/12/26/long-time-no-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b032187903bdb8726b9b3f840c04ab7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">SkilledDeveloper</media:title>
		</media:content>
	</item>
		<item>
		<title>My first post!</title>
		<link>http://csharptips.wordpress.com/2008/09/07/my-first-post/</link>
		<comments>http://csharptips.wordpress.com/2008/09/07/my-first-post/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 07:12:31 +0000</pubDate>
		<dc:creator>SkilledDeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://csharptips.wordpress.com/?p=3</guid>
		<description><![CDATA[Hello everybody!
After 7 years of professional software development in VB and Delphi, I have finally decided to switch to C# .Net. There are several reasons for this decision which I&#8217;m not going to explain them.
I&#8217;m trying to utilize my previous Delphi experience and learn new programming technics as much as I can.
This blog may be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=3&subd=csharptips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hello everybody!</p>
<p>After 7 years of professional software development in VB and Delphi, I have finally decided to switch to C# .Net. There are several reasons for this decision which I&#8217;m not going to explain them.</p>
<p>I&#8217;m trying to utilize my previous Delphi experience and learn new programming technics as much as I can.</p>
<p>This blog may be useful for beginners at first and gradually for professionals later when I got improved. Your feedback would be a good motivation for me to continue.</p>
<p>By the way, I&#8217;m going to start with &#8220;Pro C# 2008 and .NET 3.5 Platform&#8221; by Andrew Troelsen.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/csharptips.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/csharptips.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/csharptips.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/csharptips.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/csharptips.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/csharptips.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/csharptips.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/csharptips.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/csharptips.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/csharptips.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/csharptips.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/csharptips.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=3&subd=csharptips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://csharptips.wordpress.com/2008/09/07/my-first-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b032187903bdb8726b9b3f840c04ab7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">SkilledDeveloper</media:title>
		</media:content>
	</item>
	</channel>
</rss>