Friday, February 16, 2007 - Posts

Can C# V3.0 Please Have the VB9 XML Syntax?

Here's my online petition. I really like the new VB9 syntax for dealing with XElement and friends in order to construct an XML document. Can we please have that in C# V3.0 as well? :-) Anyone agree? Here's some C# that creates some XML (meant to be Read More

Desktops and the DWM

For some reason, the idea of multiple desktops was bubbling around in my head this morning and I suddenly thought "I wonder how this works with the DWM". There's a post here that explains it; http://blogs.msdn.com/cjacks/archive/2006/11/09/a-desktop-of-your-own.aspx  Read More

Grouping in LINQ

Each time I come to it, I find grouping in LINQ a bit odd so I thought I'd drop some code onto this page to try and help me remember it next time around. Using the May CTP, if I've got data; var cars = new[] { new { Make="BMW", Model="1Series", Read More