Command line to list running processes that are using .NET

tasklist /m "mscor*"

__________________________________________________________

from Zupancic's blog

New Operator in C# 2.0: ?? (null coalescing operator)

Console.WriteLine(userName ?? "User name not specified");

is equivalient to:

Console.WriteLine( null != userName ? userName : "User name not specified");

__________________________________________________________