|
BackgroundWorker is class that allows to run long operations in background thread. The DoWork event ....
|
Category:
C#
|
Date:
10/14/2010 6:48:14 AM
|
|
|
|
Action a = () => Console.WriteLine(“something”); a.Invoke();
|
Category:
C#
|
Date:
10/14/2010 6:45:31 AM
|
|
|
|
No
|
Category:
C#
|
Date:
10/14/2010 6:43:14 AM
|
|
|
|
Var means that variable is implicitly typed, it’s strongly typed but the compiler determines the typ....
|
Category:
C#
|
Date:
10/14/2010 5:22:31 AM
|
|
|
|
Dictionary<int, string> t = new Dictionary<int, string>() { {1, “a”}, {2, “vb”}, {3, “c”....
|
Category:
C#
|
Date:
10/14/2010 5:01:31 AM
|
|
|