<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by happer</title>
    <description>Stories kicked by happer</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>Exporting a DataTable to Excel (DataTable to CSV)</title>
      <description>Ever needed to export a DataTable to Excel(csv) well here is a good way to write it so that you don't have to rewrite the code for each query.  You don't even need to remember what columns you selected. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.runxc.com%2fpost%2f2009%2f06%2f24%2fExporting-a-DataTable-to-Excel-(DataTable-to-CSV).aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.runxc.com%2fpost%2f2009%2f06%2f24%2fExporting-a-DataTable-to-Excel-(DataTable-to-CSV).aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Exporting_a_DataTable_to_Excel_DataTable_to_CSV</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Exporting_a_DataTable_to_Excel_DataTable_to_CSV</guid>
      <pubDate>Wed, 01 Jul 2009 22:39:19 GMT</pubDate>
    </item>
    <item>
      <title>Execute a special build on TFS using Team Foundation Object Model</title>
      <description>Nice article that shows how to execute a special build on TFS using Team Foundation Object Model &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d342"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d342" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/teamsystem/Execute_a_special_build_on_TFS_using_Team_Foundation_Object_Model</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/teamsystem/Execute_a_special_build_on_TFS_using_Team_Foundation_Object_Model</guid>
      <pubDate>Wed, 01 Jul 2009 16:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Testing E-Mail Functionality</title>
      <description>If you are looking for a very robust testing utility for e-mailing applications, you need to get Neptune. This is a quick introduction to how Neptune works. Every software developer who has ever written software that sends e-mail of any kind will appreciate the features this little testing utility. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fprofessionalaspnet.com%2farchive%2f2009%2f06%2f24%2fTesting-E_2D00_Mail-Functionality.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fprofessionalaspnet.com%2farchive%2f2009%2f06%2f24%2fTesting-E_2D00_Mail-Functionality.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Testing_E_Mail_Functionality</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Testing_E_Mail_Functionality</guid>
      <pubDate>Fri, 26 Jun 2009 05:30:00 GMT</pubDate>
    </item>
    <item>
      <title>CLR Injection: Runtime Method Replacer</title>
      <description>how the JIT compiles MSIL and create a utility that allow us to programmatically replace any JIT'ed method with another method at runtime.  We will also create a debugging utility that will intercept JIT calls and print diagnostics information to the console. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codeproject.com%2fKB%2fdotnet%2fCLRMethodInjection.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codeproject.com%2fKB%2fdotnet%2fCLRMethodInjection.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/CLR_Injection_Runtime_Method_Replacer</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/CLR_Injection_Runtime_Method_Replacer</guid>
      <pubDate>Mon, 29 Jun 2009 20:30:00 GMT</pubDate>
    </item>
    <item>
      <title>Variable boxing and the equal operator vs. the Equals method</title>
      <description>An article about the difference between the == operator and the Equals method &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.jeffgaroutte.net%2fpost%2f2009%2f06%2fVariable-boxing-and-3d3d-vs-Equals.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.jeffgaroutte.net%2fpost%2f2009%2f06%2fVariable-boxing-and-3d3d-vs-Equals.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/Variable_boxing_and_the_equal_operator_vs_the_Equals_method</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/Variable_boxing_and_the_equal_operator_vs_the_Equals_method</guid>
      <pubDate>Thu, 18 Jun 2009 13:19:06 GMT</pubDate>
    </item>
    <item>
      <title>SilverBullet #3 - System.Windows.Input.FocusManager</title>
      <description>When you want to know what element has focus in other situations or if you need to get the focus synchronously, you can use the FocusManager class which can be found in the System.Windows.Input namespace. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fgeekswithblogs.net%2ftkokke%2farchive%2f2009%2f06%2f16%2fsilverbullet-3---system.windows.input.focusmanager.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fgeekswithblogs.net%2ftkokke%2farchive%2f2009%2f06%2f16%2fsilverbullet-3---system.windows.input.focusmanager.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/SilverBullet_3_System_Windows_Input_FocusManager</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/SilverBullet_3_System_Windows_Input_FocusManager</guid>
      <pubDate>Wed, 17 Jun 2009 12:02:27 GMT</pubDate>
    </item>
    <item>
      <title>How to prevent Extension methods from appearing as global functions</title>
      <description>C# have static (or shared) classes which VB lacks. Instead VB uses modules which are almost the same thing. One thing differs though and that is that modules makes its public methods appear as global accessible functions, meaning you don't have to type the ModuleName.MethodName() when calling such a member. You can instead simply call MethodName() directly.

A disadvantage of this fact is that extension methods, that must exist in modules in VB, will appear in IntelliSense as global functions and not only as a method of the type you extended. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fmsmvps.com%2fblogs%2fjoacim%2farchive%2f2009%2f06%2f10%2fhow-to-prevent-extension-methods-from-appearing-as-global-functions.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fmsmvps.com%2fblogs%2fjoacim%2farchive%2f2009%2f06%2f10%2fhow-to-prevent-extension-methods-from-appearing-as-global-functions.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/vbnet/How_to_prevent_Extension_methods_from_appearing_as_global_functions</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/vbnet/How_to_prevent_Extension_methods_from_appearing_as_global_functions</guid>
      <pubDate>Wed, 10 Jun 2009 13:39:54 GMT</pubDate>
    </item>
    <item>
      <title>Implementing KeyBoard Shortcuts in ASP.NET applications using jQuery </title>
      <description>Cool post on how to implement Keyboard Shortcuts in ASP.NET applications using jQuery &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d327"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetcurry.com%2fShowArticle.aspx%3fID%3d327" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/jquery/Implementing_KeyBoard_Shortcuts_in_ASP_NET_applications_using_jQuery</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/jquery/Implementing_KeyBoard_Shortcuts_in_ASP_NET_applications_using_jQuery</guid>
      <pubDate>Sat, 13 Jun 2009 06:15:00 GMT</pubDate>
    </item>
    <item>
      <title>More On Structs</title>
      <description>On Friday, I wrote a post that listed guidelines for when to use a struct rather than a class. A commenter asked me to elaborate on the 16-byte rule. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.kodefuguru.com%2fpost%2f2009%2f06%2f08%2fMore-On-Structs.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.kodefuguru.com%2fpost%2f2009%2f06%2f08%2fMore-On-Structs.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/More_On_Structs</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/More_On_Structs</guid>
      <pubDate>Mon, 08 Jun 2009 18:32:03 GMT</pubDate>
    </item>
    <item>
      <title>LINQ to SQL is NOT dead!</title>
      <description>Ever since Microsoft announced that the Entity Framework was their ORM of choice, people everywhere have been saying, "LINQ to SQL is dead!" A lot of people feel like they're not allowed to use LINQ to SQL anymore and that they have to use Entity Framework instead.

In fact, LINQ to SQL is not only alive and well, Microsoft has even announced LINQ to SQL improvements in .NET 4.0, including finally adding using ITable&amp;lt;T&amp;gt; for tables instead of Table&amp;lt;T&amp;gt;, which makes it much easier to test. Combine that with this open source tool that will create an IDataContext interface for you and you're on your way to testable LINQ to SQL. So no, LINQ to SQL is not dead!! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fjonkruger.com%2fblog%2f2009%2f06%2f06%2flinq-to-sql-is-not-dead%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fjonkruger.com%2fblog%2f2009%2f06%2f06%2flinq-to-sql-is-not-dead%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/LINQ_to_SQL_is_NOT_dead</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/LINQ_to_SQL_is_NOT_dead</guid>
      <pubDate>Sun, 07 Jun 2009 19:00:03 GMT</pubDate>
    </item>
    <item>
      <title>LINQ in Action samples available in LINQPad</title>
      <description>In addition to being a great LINQ tool and C# and VB snippet IDE, LINQPad now integrates code samples from LINQ books.
The first LINQPad-enabled book is LINQ in Action. This allows you to quickly and painlessly discover LINQ. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2ffmarguerie%2farchive%2f2009%2f06%2f06%2flinq-in-action-samples-in-linqpad.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2ffmarguerie%2farchive%2f2009%2f06%2f06%2flinq-in-action-samples-in-linqpad.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/LINQ_in_Action_samples_available_in_LINQPad</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/LINQ_in_Action_samples_available_in_LINQPad</guid>
      <pubDate>Sun, 07 Jun 2009 12:15:00 GMT</pubDate>
    </item>
    <item>
      <title>Should We Return Null From Our Methods?</title>
      <description>I read a interesting article recently about the potential perils of Null Check Hell. The author's suggestion? Stop allowing any of your methods to return nulls, ever . No nulls returned, no null checks necessary. Problem solved, right? &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fleedumond.com%2fblog%2fshould-we-return-null-from-our-methods%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fleedumond.com%2fblog%2fshould-we-return-null-from-our-methods%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Should_We_Return_Null_From_Our_Methods</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Should_We_Return_Null_From_Our_Methods</guid>
      <pubDate>Sat, 06 Jun 2009 18:15:06 GMT</pubDate>
    </item>
    <item>
      <title>LINQ to SQL changes in .NET 4.0</title>
      <description>What's fixed and breaking changes for LINQ to SQL in .NET 4.0 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fdamieng.com%2fblog%2f2009%2f06%2f01%2flinq-to-sql-changes-in-net-40"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fdamieng.com%2fblog%2f2009%2f06%2f01%2flinq-to-sql-changes-in-net-40" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/LINQ_to_SQL_changes_in_NET_4_0</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/LINQ_to_SQL_changes_in_NET_4_0</guid>
      <pubDate>Wed, 03 Jun 2009 12:15:00 GMT</pubDate>
    </item>
    <item>
      <title>Performance testing of Dictionary, List and HashSet</title>
      <description>A quick little test of how the .net 3.5 Dictionary, List and HashSet compare adding and finding items. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fsoftscenario.blogspot.com%2f2009%2f05%2fperformance-testing-of-dictionary-list.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fsoftscenario.blogspot.com%2f2009%2f05%2fperformance-testing-of-dictionary-list.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Performance_testing_of_Dictionary_List_and_HashSet</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Performance_testing_of_Dictionary_List_and_HashSet</guid>
      <pubDate>Fri, 29 May 2009 20:30:00 GMT</pubDate>
    </item>
    <item>
      <title>VS Explorer adds a Explorer-Like browsing window to Visual Studio</title>
      <description>VS Explorer adds a Windows Explorer-Like file and folder browsing window to Visual Studio. It provides complete access to file and folder context menus (including 3rd party extensions such as TortoiseSVN) and drag-drop functionality which allows directly adding files/folders to your projects. It can quickly browse to the current solution folder, project folder or the selected item. It can add selected dll/exe files as references and open command prompt window on selected folder. VS Explorer eliminates switching back and forth between Visual Studio and Windows Explorer and other external programs and allows you to focus on your work flow and preserve concentration, save time, reduce stress and work efficiently. VS Explorer supports Auto-Install for VS 2010 via extension manager. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.ssware.com%2fvsexplorer%2fvsexplorer.htm"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.ssware.com%2fvsexplorer%2fvsexplorer.htm" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/VS_Explorer_adds_a_Explorer_Like_browsing_window_to_Visual_Studio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/VS_Explorer_adds_a_Explorer_Like_browsing_window_to_Visual_Studio</guid>
      <pubDate>Fri, 29 May 2009 05:28:32 GMT</pubDate>
    </item>
    <item>
      <title>My Dot Net Developer's tools list, and more.</title>
      <description>I gave a brownbag presentation at my current client recently about the common tools (in addition to Visual Studio), that I use on a regular basis for working with .NET or web development in general. I also threw in some non-development tools that are a part of my day to day life and make things easier. Here's the complete list: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.DotNetSurfers.com%2fBlog%2f2009%2f05%2f23%2fMyDotNetDeveloperrsquosToolsListAndMorehellip.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.DotNetSurfers.com%2fBlog%2f2009%2f05%2f23%2fMyDotNetDeveloperrsquosToolsListAndMorehellip.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/aspnet/My_Dot_Net_Developer_s_tools_list_and_more</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/aspnet/My_Dot_Net_Developer_s_tools_list_and_more</guid>
      <pubDate>Wed, 27 May 2009 04:00:01 GMT</pubDate>
    </item>
    <item>
      <title>Solution to Famous Error 40 of SQL Server - A Must Bookmark</title>
      <description>Everybody who has ever used SQL Server might have encountered this error one time or another time. 

This is absolutely must bookmark link. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.sqlauthority.com%2f2009%2f05%2f21%2fsql-server-fix-error-provider-named-pipes-provider-error-40-could-not-open-a-connection-to-sql-server-microsoft-sql-server-error%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.sqlauthority.com%2f2009%2f05%2f21%2fsql-server-fix-error-provider-named-pipes-provider-error-40-could-not-open-a-connection-to-sql-server-microsoft-sql-server-error%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/Solution_to_Famous_Error_40_of_SQL_Server_A_Must_Bookmark</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/Solution_to_Famous_Error_40_of_SQL_Server_A_Must_Bookmark</guid>
      <pubDate>Fri, 22 May 2009 19:46:14 GMT</pubDate>
    </item>
    <item>
      <title>Announcing FsCheck 0.6</title>
      <description>New version of FsCheck with C# and VB support. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ffortysix-and-two.blogspot.com%2f2009%2f05%2fannouncing-fscheck-06-dot-is-new-pipe.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ffortysix-and-two.blogspot.com%2f2009%2f05%2fannouncing-fscheck-06-dot-is-new-pipe.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/Announcing_FsCheck_0_6</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/Announcing_FsCheck_0_6</guid>
      <pubDate>Thu, 14 May 2009 01:57:38 GMT</pubDate>
    </item>
    <item>
      <title>Microsoft Test and Lab Manager</title>
      <description>Visual Studio Team System is getting a new tool: Microsoft Test and Lab Manager. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.kodefuguru.com%2fpost%2f2009%2f05%2f13%2fMicrosoft-Test-and-Lab-Manager.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.kodefuguru.com%2fpost%2f2009%2f05%2f13%2fMicrosoft-Test-and-Lab-Manager.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Microsoft_Test_and_Lab_Manager</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Microsoft_Test_and_Lab_Manager</guid>
      <pubDate>Wed, 13 May 2009 23:22:02 GMT</pubDate>
    </item>
    <item>
      <title>How to test your multi-threaded code (part 3 of 3)?</title>
      <description>In the last post we learned how to find and fix a simple multi-thread problem. Now we will see a more complex scenario and see how CHESS wil find the solution. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.decarufel.net%2f2009%2f05%2fhow-to-test-your-multi-threaded-code_13.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.decarufel.net%2f2009%2f05%2fhow-to-test-your-multi-threaded-code_13.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_test_your_multi_threaded_code_part_3_of_3</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_test_your_multi_threaded_code_part_3_of_3</guid>
      <pubDate>Wed, 13 May 2009 21:16:05 GMT</pubDate>
    </item>
    <item>
      <title>Difference between BasicHttpBinding and WsHttpBinding</title>
      <description>WCF has introduced lot of bindings and protocols. This article will concentrate on two important protocols BasicHttpBinding and WsHttpBinding which look similar but have some huge fundamental differences. So we will first start with the difference and then we will make a small project and see how the differences look practically. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dotnetfunda.com%2farticles%2farticle364.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dotnetfunda.com%2farticles%2farticle364.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wcf/Difference_between_BasicHttpBinding_and_WsHttpBinding</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wcf/Difference_between_BasicHttpBinding_and_WsHttpBinding</guid>
      <pubDate>Wed, 13 May 2009 14:56:01 GMT</pubDate>
    </item>
    <item>
      <title>How to test your multi-threaded code (part 2 of 3)?</title>
      <description>Previously we saw how to build a test to find a multi-thread bug our your code. Now we will look at how to reproduce debug and fix it. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.decarufel.net%2f2009%2f05%2fhow-to-test-your-multi-threaded-code_11.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.decarufel.net%2f2009%2f05%2fhow-to-test-your-multi-threaded-code_11.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_test_your_multi_threaded_code_part_2_of_3</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_test_your_multi_threaded_code_part_2_of_3</guid>
      <pubDate>Wed, 13 May 2009 18:16:03 GMT</pubDate>
    </item>
    <item>
      <title>Integrate FxCop with Visual Studio</title>
      <description>Step by step how to integrate FxCop with Visual Studio. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvkreynin.wordpress.com%2f2009%2f05%2f09%2fintegrate-fxcop-1-36-vs-2008%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvkreynin.wordpress.com%2f2009%2f05%2f09%2fintegrate-fxcop-1-36-vs-2008%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Integrate_FxCop_with_Visual_Studio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Integrate_FxCop_with_Visual_Studio</guid>
      <pubDate>Sun, 10 May 2009 08:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Free T4 Editor for your ASP.NET MVC T4 Templates available</title>
      <description>Found on tangible blog, that the new tangible T4 Editor 1.4 FREE EDITION now includes full Intelli-Sense support

for MVC Host and related namespaces used in ASP.NET MVC 1.0 RTM T4 Templates. In addition it provides a nice highlighting
for ASP.NET and T4 Code.

Seems like anyone can now edit MVC T4 Templates with full comfort without investing a penny. 

Awesome! &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ftangibleengineering.blogspot.com%2f2009%2f05%2ftangible-t4-editor-14-support-for-mvc.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ftangibleengineering.blogspot.com%2f2009%2f05%2ftangible-t4-editor-14-support-for-mvc.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/Free_T4_Editor_for_your_ASP_NET_MVC_T4_Templates_available</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/Free_T4_Editor_for_your_ASP_NET_MVC_T4_Templates_available</guid>
      <pubDate>Sat, 09 May 2009 01:01:06 GMT</pubDate>
    </item>
    <item>
      <title>How to test your multi-threaded code (part 1 of 3)?</title>
      <description>CHESS is the answer. At least this is what we have best right now. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fblog.decarufel.net%2f2009%2f05%2fhow-to-test-your-multi-threaded-code.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fblog.decarufel.net%2f2009%2f05%2fhow-to-test-your-multi-threaded-code.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_test_your_multi_threaded_code_part_1_of_3</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_test_your_multi_threaded_code_part_1_of_3</guid>
      <pubDate>Thu, 07 May 2009 01:01:04 GMT</pubDate>
    </item>
  </channel>
</rss>