what is the difference between passing a value object by reference and a reference object by value?
TCS,
4 6925Is it possible to implement an interface to a structure? Is it possible to extend a struct? Is it possible to inherit a class to struct?
IBM, Logica CMG, TCS,
9 22216
What is a console?
explain the features of static/shared classes.
What are the Types of caching
What does writeline mean?
What is the difference between method and constructor in c#?
What is type checking in c#?
Which is faster hashtable or dictionary?
What are the different ways of method can be overloaded?
Distinguish between finally and finalize blocks?
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; } }
What is namespace in oops?
How to force my .net app to run as administrator on windows 7?
Difference between debug.write and trace.write?
Explain the serialization in .net
What are sessions in c#?