.NET
-
Getting the public static readonly strings and public const strings (and their values) from a class
Quite a few projects have one or more classes with with a bunch of public const stringor public static readonly…
Read More » -
Beware of big Task Parallel Library Operations
Take a look at the following code: class Program{ static void Main() { var list = Enumerable.Range(0, 10 * 1000).ToList();…
Read More » -
Simple MVVM Toolkit versus MVVM Light Toolkit
DISCLAIMER: This comparison was performed around a year ago. Since then the MVVM Light Toolkit has been updated, so this…
Read More » -
Performance oriented .NET XML and JSON serialization
Microsoft .NET framework provides multiple out-of-the-box data serializers for data transformations. The most famous one used since .NET 1.0 version…
Read More » -
Reflector is dead. Long live Reflector!
It’s sad but it was recently announced that one of the most well known tools for .Net development will cease…
Read More » -
Building DCI Context with ASP.NET MVC
In this post I’ll address one of the questions that I tend to get when talking about DCI: How is…
Read More » -
ASP.NET MVC 4 Beta issues workarounds
The postcardsfromskyrim.net implementation of the postcardApp has been invaluable in getting down to the nuts and bolts of the new…
Read More » -
Three .NET tools for every day use
Time is a very limited and expensive resource. As a software developer I feel more often than not that I…
Read More » -
Impressions of NDepend
I’ve been giving NDepend a go lately, in part because I’ve had my eye on it for a while, and…
Read More » -
Enabling parameterized tests in MSTest using PostSharp
I have blogged about the shortcoming of Microsoft’s unit testing framework in the past. It has very good Visual Studio…
Read More »