What is the use of xmlserializer?
Tell me the difference between value passing and address passing?
how can your software identify which version of dot net framework install in client pc and install framework accordingly
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; } }
How?s method overriding different from overloading?
What is a c# delegate?
what are the Disadvantages of vb
What are the advantages of using assemble language programming?
what are the benefits in using c# ?
Is is possible to force garbage collector to run?
Okay, so an int is a value type, and a class is a reference type. How can int be derived from object?
What are the types of methods in c#?
Can abstract class have constructor?