<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by shehmed</title>
    <description>Stories kicked by shehmed</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title>How to show solution file of the project in the Solution explorer?</title>
      <description>If you are unable to view the solution file of the project in the solution explorer of the Visual Studio IDE then follow these steps to let it show always. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2009%2f03%2fhow-to-show-solution-file-of-project-in.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2009%2f03%2fhow-to-show-solution-file-of-project-in.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/How_to_show_solution_file_of_the_project_in_the_Solution_explorer</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/How_to_show_solution_file_of_the_project_in_the_Solution_explorer</guid>
      <pubDate>Thu, 07 May 2009 05:16:16 GMT</pubDate>
    </item>
    <item>
      <title>SqlConnection.ConnectionTimeout vs SqlCommand.CommandTimeout</title>
      <description>Do you know?
What is the Difference in between of SqlConnection.ConnectionTimeout vs SqlCommand.CommandTimeout? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2009%2f04%2fsqlconnectionconnectiontimeout-vs.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2009%2f04%2fsqlconnectionconnectiontimeout-vs.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/adonet/SqlConnection_ConnectionTimeout_vs_SqlCommand_CommandTimeout</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/adonet/SqlConnection_ConnectionTimeout_vs_SqlCommand_CommandTimeout</guid>
      <pubDate>Thu, 07 May 2009 05:04:34 GMT</pubDate>
    </item>
    <item>
      <title>DotNet Interview Questions</title>
      <description>The following collection of interview questions is my self created because these are the questions which have been asked from me wherever I go for an interview as a Software Developer (.Net) and I hope it will help you out. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2009%2f01%2fdotnet-interview-questions.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2009%2f01%2fdotnet-interview-questions.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/DotNet_Interview_Questions</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/DotNet_Interview_Questions</guid>
      <pubDate>Tue, 27 Jan 2009 01:08:26 GMT</pubDate>
    </item>
    <item>
      <title>Bubble Sort Algorithm</title>
      <description>-Bubble sort is the simplest algorithm which compares two elements at a time and swaps them if they are in wrong order or if  first element is greater than the second element. it repeatedly swaps elements until no swap is needed.
-It is not normally used in practice except in School for the purpose of or to know how the sorting algorithm.
-It is not much efficient sorting algorithm as others.
-The complexity of Bubble Sort is ?(n&amp;#178;) and it should not be used when n is large. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2008%2f09%2fbubble-sort-algorithm.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2008%2f09%2fbubble-sort-algorithm.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Bubble_Sort_Algorithm</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Bubble_Sort_Algorithm</guid>
      <pubDate>Fri, 10 Oct 2008 05:37:25 GMT</pubDate>
    </item>
    <item>
      <title>Selection Sort Algorithm</title>
      <description>    * Selection sort is a very simple sorting algorithm.
    * It starts to find out the smallest element by searching in a linear way and swap it with i place and then find the second  smallest by searching from n-i elements and place it at ith place and so on.
    * It is improved on the performance of bubble sort.
    * Complexity in worst case and average case is ?(n&amp;#178;) and the worst case is when it is in sorted order.
    * It should not be use when n is large.
 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2008%2f09%2fselection-sort-algorithm.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2008%2f09%2fselection-sort-algorithm.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Selection_Sort_Algorithm</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Selection_Sort_Algorithm</guid>
      <pubDate>Fri, 10 Oct 2008 05:25:14 GMT</pubDate>
    </item>
    <item>
      <title>Do you know which one is the first...?</title>
      <description>Do you know which one is the, First OOP Language, First High Level Programming Language,First Programmer, Very first Website... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2008%2f10%2fdo-you-know-which-one-iswas-first.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2008%2f10%2fdo-you-know-which-one-iswas-first.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Do_you_know_which_one_is_the_first</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Do_you_know_which_one_is_the_first</guid>
      <pubDate>Fri, 10 Oct 2008 05:10:45 GMT</pubDate>
    </item>
    <item>
      <title>Highlights of Visual Studio 2010 and .Net Framework 4.0</title>
      <description>Microsoft has announced to launch the Visual Studio 2010 and .Net Framework 4.0 very soon with new outstanding features that address the latest raising needs of the developers. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2008%2f10%2fhighlights-of-visual-studio-2010-and.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsharpcontents.blogspot.com%2f2008%2f10%2fhighlights-of-visual-studio-2010-and.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Highlights_of_Visual_Studio_2010_and_Net_Framework_4_0</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Highlights_of_Visual_Studio_2010_and_Net_Framework_4_0</guid>
      <pubDate>Fri, 10 Oct 2008 05:01:41 GMT</pubDate>
    </item>
  </channel>
</rss>