C#
-
.NET
The persistence layer in SharpMessaging
I’m working on a messaging system in .NET. It’s purpose is to allow you to use reliable (and transactional) messaging…
Read More » -
.NET
Integrating Node.js with a C# dll
Recently I had to integrate a Node.js based server application with a C# DLL. Our software (a web-app) offers the…
Read More » -
.NET
Use Common Instance Factory to Abstract Away the Dependency Injection Container
Download the Common Instance Factory with WCF Extensions here and is also available on NuGet. A while back I wrote…
Read More » -
.NET
Fluent interfaces in C# – method chaining
For those of you who just tuned in, this is a third post on the subject of fluent interfaces using…
Read More » -
.NET
Nullable Types’ Subtlety
I did a post called .Net Nullable Types on GeekQuiz.Net that I think is worth sharing here (in case you…
Read More » -
.NET
To “var” or not to “var”, is that really the question?
There are several blog posts and discussions about whether to use var or not. They tend to focus on whether…
Read More » -
.NET
.NET/C#: Generating a WordPress posting categories page
From the category cloud it is hard to see that the categories are organized as a hierarchy. The combobox on…
Read More » -
.NET
Fluent Interfaces in C# – Extension Methods
For those of you who haven’t read the previous post. This post is the 2nd of many where I explain…
Read More » -
Software Development
GC – Static Class Issues!
Understanding the scenario We were working on a Windows Service for a large US bank when we discovered that there…
Read More » -
.NET
Double check pattern
I just answered a question at SO about lazy loading which involved the double check pattern. It’s a really useful…
Read More »