Here is Managed C++ code that you can call from any .NET language to do it without WMI: http://www.codeproject.com/KB/mcpp/DriveInfoEx.aspx
Here is the WMI way:
using System.Management
...
var disk = new ManagementObject("win32_logicaldisk.deviceid=\"C:\"");
disk.Get();
Console.WriteLine(disk["VolumeSerialNumber"]);
...
Oops! That is with WMI. My reading comprehension needs improvement... ;-)
