C#
-
Software Development
List executed code using PostSharp
This post was created to answer a question by Laimonas Simutis on the ALT.NET mailing list – how to list…
Read More » -
.NET
Correctly Implementing Equals() in C#
It’s said that “the devil is in the details”. Well I saw some code the other day that reminded me…
Read More » -
.NET
Posting JSON Data to an ASP.net MVC 3 Web Application
The trend in today’s web application development goes more and more in the direction of having rich, desktop-like applications. There…
Read More » -
.NET
Smelly Code: Direct Object Instantiation as a Testability Killer
This Smelly Code post discusses mainly a testability issue without going into further detail on other things like readability which…
Read More » -
.NET
Aspect Oriented Programming with Action
Aspect Oriented Programming (AOP) is a pretty great concept. It is a little difficult to implement though. To be honest, I…
Read More » -
.NET
Explaining What Action And Func Are
In C#, Action<> and Func<> are extremely useful tools for reducing duplication in code and decreasing coupling. It is a…
Read More » -
.NET
Playing around with PLINQ and IO-bound tasks
I recently downloaded Visual Studio 2010 beta, and took the chance to play with PLINQ. PLINQ, for those of you…
Read More » -
.NET
Template Method design pattern
As I already mentioned in my previous post I’m currently doing domain objects to XSD generated object mapping. Monotonic, exactly,…
Read More »