Be consistent with DllImports

Fri, December 14, 2007, 01:37 AM under dotNET
Most .NET developers have at some point in their career called into a native library (whether it was C\C++ DLL part of the Windows OS or one of their own or one from a 3rd party is irrelevant). To call native functions form .NET you use the DLLImport attribute and even though it has various overloads, the main thing we do is point it to the native DLL name (the Declare statement in VB does the same thing although I use DllImport in VB projects as well).

The subtle point is that there is no convention for how we specify the name so, for example, all of the following are valid and will work at runtime:
    [DllImport("kernel32.dll")]
static extern ...;
[DllImport("kernel32")]
static extern ...;
[DllImport("Kernel32.DLL")]
static extern ...;
[DllImport("KERNEL32")]
static extern ...;
[DllImport("KeRnEl32.DlL")]
static extern ...;
Now, I know that there is no convention, but if you used the above this is what you would see in ILDASM (and indeed in reflector too):


You may think: "So what, isn't just one kernel32 loaded in my process at the end of the day?". Well, yes, but there is a slight performance penalty because the loader treats each separate string as a separate module!

Some of you are thinking that "for that performance reason alone" you should standardize on a convention e.g. always use lowercase and include the ".dll" extension... or something like that. Others are probably thinking that "the performance gains are negligible" for you to make a rule for this.

In my opinion (and it is my blog so don't be shocked that these are my opinions here!), you are both wrong and right at the same time. For me, this is an issue of hygiene. Once I learnt about this fact (many moons ago :-), I couldn't live with myself if in my assemblies I didn't define a standard for pinvoking. Nothing to do with performance – it just feels dirty to me not to use the same DLL name throughout my assembly. That's just the kind of person I am...

So I sighed when I discovered that System.Core.dll is the first and only assembly so far in v2.0/3.0/3.5 of the framework not to follow the "all lower case with .dll appended" convention, as viewing it through a disassembler proves :-(

MSDN Flash 12 Dec

Thu, December 13, 2007, 02:47 AM under Links
The MSDN Flash was delivered yesterday (subscribe here).

In every issue we have a feature article on a specific topic and this time it is about building Silverlight Sidebar Gadgets – you can view this issue online now.

Task and TaskManager

Wed, December 12, 2007, 02:42 PM under dotNET
In this 4th video in my series on the ParallelFX, I explore what it is like to program against the lowest level API in the Task Parallel Library: the Task and TaskManager. Watch it or download it from here.

DataSet enhancements in VS2008

Tue, December 11, 2007, 03:12 PM under dotNET | Orcas
For those of you using the DataSet, you'll be happy to know that there are enhancements to it, including these three:

1. Hierarchical Updates: Read.
2. Separate DataSets and TableAdapters for multi-tier solutions: Read, watch.
3. LINQ to DataSet: Read and Watch.

Bonus: Read a nice collection of How To and walkthrough articles for the dataset designer.

How do you start a user group

Tue, December 11, 2007, 03:20 AM under Events
Via Christopher, I found the post by Blogus Maximus on his 21 thoughts for running user groups.

I am finding it tough to add to the list above, can you? If you are already running a user group I'd love to read your thoughts (e.g. on your blog)...

If you are in the UK and are thinking of starting a user group read that useful list. When you are ready, follow his advice on #3 and shoot me an email!

LINQ to DataSet video

Mon, December 10, 2007, 09:07 AM under dotNET | Orcas | LINQ
I have already written about LINQ to DataSet, and for more details than what I provided you should follow the links I suggested on that post. In addition, I just published an 18' video on LINQ to DataSet which I hope you enjoy...

ParallelFX class diagrams

Sun, December 9, 2007, 04:22 PM under dotNET
In my videos on Parallel FX, I showed some class diagrams. I thought that you may want to see those independently of the video. Click on the links below to open the respective class diagram png image (or "save as"):

+ Parallel LINQ.
+ Parallel class and friends.
+ TaskManager, Task, Future and friends.

Me too links of today

Thu, December 6, 2007, 06:32 PM under Links
- How can a truly innocent blog post on Internet Explorer 8, attract over 100 comments!

- ScotGu states in a reply to his own post that the ASP.NET 3.5 Extensions Preview will be available tomorrow.

- PDC08 announced (hopefully it won't be rescheduled again). Can you believe that I've never been to one?!

- There are 5 (five!) other announcements made in the last 36 hours, but rather than list them here I'll include them in the upcoming Flash as usual. Please subscribe now.

Code snippet for property old style

Tue, December 4, 2007, 03:18 AM under Orcas | VisualStudio
When I first realised that the prop snippet now generates automatic properties in C# I thought it was cool. The more I write code in VS2008 though I find that when I need to write a property with get/setters that are explicitly implemented, it becomes tedious – I used to rely on prop in VS2005 too much I guess. This is easily rectified by adding a new code snippet of course.

Creating snippet is so easy it should be illegal :), but to save you the manual work here is the one I created for this purpose (propOld). Simply "save as" to your local drive and then from Visual Studio 2008 menu "Tools->Code Snippet Manager" click the "Import" button; then in a C# file type proOLD and hit TAB (instead of prop+TAB).

December UK Events

Sun, December 2, 2007, 03:48 AM under Events
Thank you to everyone that came to my September, October and November events. In total from 18 September to 29 November I delivered 21 sessions. December is always the quiet month from an in-person events perspective and especially for me since I'll be taking 1/3 of it off for holiday. That also means that (with January round the corner) I better spend time figuring out what the heck I am going to say/show for my upcoming Windows Server 2008 developer sessions (all ideas welcome!).

So, this is my short (useless) December list:
  • 6th, London, MSDN web event [sorry, this event is full inc. the waitlist]
  • 12th, Southampton, MS VS event [sorry, there is no public registration for this event]
We have just started a new scheme of online chats that you are welcome to join IF you attended one of our MSDN events in the UK this year.
FYI, for UK events (inc. ones that have nothing to do with me) monitor this developerfusion feed.