What is an object pool in .net?
What is pure abstract class in c#?
How does the XmlSerializer work ?
Can a struct inherit from an interface in c#?
In a memory when you Box and Unbox a value-type what happens?
To compute the monthly, half-yearly and annual sales made by all the salesmen of a company.
What is a static field?
what is the real use of interface in c#,other than that multiple inheritance is not possible
What is the difference between // comments, /* */ comments and /// comments?
C# called c sharp why?
class Program { void add() { int x=10, y=20; fun(); Console.WriteLine("{0}", sum); } void fun() { int sum; sum = x + y; } static void Main(string[] args) { Program f =new Program(); f.add(); } } Debug above program.....
Is there any sample c# code for simple threading?
If a base class has a bunch of overloaded constructors, and an inherited class has another bunch of overloaded constructors, can you enforce a call from an inherited constructor to an arbitrary base constructor?