Michael Sorens Web Testing with Selenium Sushi: A Practical Guide and Toolset How does one test the user-interface of a web application? Too often, the answer seems to be 'clumsily, slowly, and... 09 February 2011 35 min read
Jeremy Jarrell Hitting the Ground Running with Parallel Extensions in .NET 4.0 With the arrival of Parallel Extensions in .NET 4.0, the concurrent programming powers traditional reserved for the most elite of... 01 February 2011 13 min read
Simon Cooper Subterranean IL: Compiling C# exception handlers An exception handler in C# combines the IL catch and finally exception handling clauses into a single try statement: How... 25 January 2011 4 min read
Simon Cooper Subterranean IL: Exception handling control flow Control flow in and around exception handlers is tightly controlled, due to the various ways the handler blocks can be... 17 January 2011 3 min read
Simon Cooper Subterranean IL: Exception handling Today, I’ll be starting a look at the Structured Exception Handling mechanism within the CLR. Exception handling is quite a... 13 January 2011 3 min read
Michael Sorens LINQ Lycanthropy: Transformations into LINQ LINQ is one of the few technologies that you can start to use without a lot of preliminary learning. Also,... 05 January 2011 27 min read
Zenon Ochal Dynamic Language Integration in a C# World .NET 4.0 introduced the Dynamic keyword in C#4.0, making it simple to have your .NET code smoothly interact with dynamic... 04 December 2010 14 min read
Michael Sorens LINQ Secrets Revealed: Chaining and Debugging LINQ has the capabilities of providing a great productivity boost. LINQ Chaining is particularly powerful magic, giving your code greater... 01 December 2010 30 min read
Simon Cooper Subterranean IL: Pseudo custom attributes Custom attributes were designed to make the .NET framework extensible; if a .NET language needs to store additional metadata on... 30 November 2010 4 min read
Simon Cooper Subterranean IL: Custom modifiers In IL, volatile is an instruction prefix used to set a memory barrier at that instruction. However, in C#, volatile... 26 November 2010 3 min read
Nick Harrison Some NHibernate Best-Practices NHibernate can help to build a project more quickly if the database it connects to is sound. Otherwise, there are... 25 November 2010 13 min read
Edward Elliott How The Garbage Collector Can Cause Random Slowness If your website is suffering from slow performance, it's easy to blame the code, but not always correct. Even in... 25 November 2010 15 min read
Simon Cooper Subterranean IL: Constructor constraints The constructor generic constraint is a slightly wierd one. The ECMA specification simply states that it: constrains [the type] to... 17 November 2010 4 min read
Simon Cooper Subterranean IL: Generics and array covariance Arrays in .NET are curious beasts. They are the only built-in collection types in the CLR, and SZ-arrays (single dimension,... 11 November 2010 5 min read
Simon Cooper Subterranean IL: Callvirt and generic types In this post we finally get on to how basic generic methods are implemented in IL. First of all, we... 08 November 2010 6 min read
Simon Cooper Subterranean IL: Callvirt and virtual methods Next up is a look at the details of callvirt and what happens when you call a virtual method. However,... 05 November 2010 6 min read
Shailesh Patel Understanding Browser-Based Silverlight Project Architecture A large part of Silverlight's allure is in its cross-browser capabilities, and that power is derived from its rendering architecture.... 04 November 2010 11 min read
Michael Sorens Creating Tray Applications in .NET: A Practical Guide It isn't widely known that you can use both WPF and Winforms with VS2010 to create a system tray application... 04 November 2010 26 min read
Hima Bindu Vejella The New Features in C#4.0 The co-evolution of Visual Basic and C# is increasingly going to bring the feature-set of those languages closer together. So,... 04 November 2010 20 min read
Leidago Noabeb Using Table Valued Parameters with VB.NET SQL Server's Table-Valued Parameters are useful, and easy to use, but you should be aware that something that looks loke... 03 November 2010 13 min read