6 blog posts tagged VB.NET

LINQ to SQL cheat sheet
A two-page PDF reference for LINQ to SQL — one page for C# and one for VB.NET — covering common query operations, manipulations, and attributes.

LINQ to SQL template for Visual Studio 2008
Detailed reference for my T4-based LINQ to SQL template — a customisable, designer-compatible replacement for SQLMetal supporting inheritance, VB.NET, composite keys, and stored procedure CRUD with concurrency.

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!