6 blog posts tagged VB.NET

LINQ to SQL cheat sheet
A few short words to say I’ve put together a cheat sheet for LINQ to SQL with one page for C# and another for VB.NET.
It shows the syntax for a number of common query operations, manipulations and attributes and can be a very useful quick reference :)

LINQ to SQL template for Visual Studio 2008
A newer version of this LINQ to SQL template is available.
If you want to customize the LINQ to SQL code generation phase in your project without additional tool dependencies this could be what you’re looking for.

Object Initializers in .NET 3.5
One compiler improvement in .NET 3.5 is the object initializers feature that lets you concisely set properties of an object as you create it.

Visual Studio 2003 – System.ArgumentException in debugger
I recently ran into a problem while debugging inside Visual Studio 2003.Net. Google couldn’t find me an answer, only a few other people with the same problem. Here’s my solution in the hope it might save somebody else some time.

VB.NET to C# conversion
I recently converted some components on a project from VB.NET to C#, mainly for overloading and better tool support (such as ReSharper). Some of the existing code was generated from my own CodeSmith templates, so a small rewrite to generate C# handled most of that.

Lapsed-listeners – Memory leaks in subscriber-publisher scenarios
I’ve been promising something .NET related for a while… here’s something!