| c# Programming Glossary: queryobjHow to programmatically discover mapped network drives on system and their server names? http://stackoverflow.com/questions/1088752/how-to-programmatically-discover-mapped-network-drives-on-system-and-their-serve  FROM Win32_MappedLogicalDisk foreach ManagementObject queryObj in searcher.Get  Console.WriteLine    Console.WriteLine Win32_MappedLogicalDisk.. instance  Console.WriteLine    Console.WriteLine Access 0 queryObj Access  Console.WriteLine Availability 0 queryObj Availability.. Access 0 queryObj Access  Console.WriteLine Availability 0 queryObj Availability  Console.WriteLine BlockSize 0 queryObj BlockSize.. 
 How can I get the PID of the parent process of my application http://stackoverflow.com/questions/2531837/how-can-i-get-the-pid-of-the-parent-process-of-my-application  if results.MoveNext throw new Exception Huh var queryObj results.Current uint parentId uint queryObj ParentProcessId.. Huh var queryObj results.Current uint parentId uint queryObj ParentProcessId var parent Process.GetProcessById int parentId.. 
 |