Which are the access modifiers available in c#?
What is the difference between arraylist and list in c#?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
Define xslt.
Is post back c#?
How many constructor can a class have?
Why do we use readonly in c#?
What are destructors in C#?
Can we customize the serialization process?
What are the differences between value types and reference types?
If I have more than one version of one assemblies, then how'll I use old version (how/where to specify version number?)in my application?
What is datetime minvalue in c#?
What is Event - Delegate?
Why do we Need of static class in c#?
Give some examples of commonly used i/o classes?