.NET tips

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");

__________________________________________________________

posted @ Wednesday, November 09, 2005 11:14 AM

Print

Comments on this entry:

No comments posted yet.

Your comment:



 (will not be displayed)


 
 
 
Please add 2 and 6 and type the answer here:
 

Live Comment Preview:

 
«December»
SunMonTueWedThuFriSat
30123456
78910111213
14151617181920
21222324252627
28293031123
45678910