Welcome to DetlefGrohs.com Sign in | Join | Help

February 2009 - Posts

New Toy!

I now have a HTC Touch Pro and I am loving it. I have actually had this for quite a while now and don’t really know how I survived without it! The screen resolution of 480x640 is phenomenal and you can see the difference when browsing the web etc… I am
posted by detlef | 0 Comments
Filed Under:

Further C# 3.0 Object Initializers Explorations

I like to see what is going underneath the covers for new language features to see if they are implementing IL the way I expect or are they doing something tricky. For the new Object Initializers feature it generates basically the same IL whether you
posted by detlef | 0 Comments
Filed Under:

C# Object Initializers

I didn’t know about this language feature, but I really like it!!! This Pen pen = new Pen(Color) {Width = Size}; is equivalent to Pen pen = new Pen(Color); pen.Width = Size; That is just so cool!!! It is a C# 3.0 feature that apparently even supports
posted by detlef | 0 Comments
Filed Under:

Embedded Resources in ASP.NET Applications

A quick run down on how to embed resources in ASP.NET applications. Add the resource to your solution and set to an embedded resource. Add the following lines to your AssemblyInfo.cs file to allow the WebResource.axd handler to access the resource in
posted by detlef | 0 Comments
Filed Under:

YourFonts.com

YourFonts.com is a neat service that will take your handwriting and turn into a font for your computer. There is a free online version that you can use. They also have several pay versions with downloaded applications you can use to create and modify
posted by detlef | 0 Comments
Filed Under: