|
|
-
|
|
Recently i was asked this question in an interview, "When garbage collector will be executed?"...
|
|
-
|
|
Some class has a field declared as readonly array, for example:
private readonly int[] _array = new int[10];
Is it allowed to change elements of this array ?...
|
|
-
|
|
When the control doesn't reach the "Finally" block?...
|
|
-
|
|
What is numeric promotions?...
|
|
-
|
|
Can we declare 2 methods with same parameters and different return types?
...
|
|
-
|
|
Is it possible to declare a local varaible as Volatile?...
|
|
-
|
|
What is "short-circuit" evaluation in C#?...
|
|
-
|
|
What must be the return type for operator overloading and for which operator it differs?...
|
|
-
|
|
What is difference between ref and out variables?...
|
|
-
|
|
What is a Jagged Array?...
|
|