What is boxing in .NET?
Boxing is the process of converting a value type into a reference type directly. Boxing is implicit.
| Is This Answer Correct ? | 0 Yes | 0 No |
State the various features present in .NET?
What is a Strong Name?
What is "common language specification" (cls) in .net?
What is "microsoft intermediate language" (msil)?
String[] a = new string[10] for(i=0; i<10; i++) { a[i] = i; } How many heap object will be created for this array. Choose the answer below. Ans: 1, 10, 11, 12
How do I spawn a thread?
Please explain what garbage collection is and how it works. Provide a code example of how you can enforce garbage collection in .net?
What versions of .net are there?
Explain how to spawn a thread?
Difference between class and interface in .net?
What are the collections you've used?
What is the procedure to add assemly to gac to make it shared one?