What is Garbage Collection in .Net?
How to declare a property in a class?
What is the implicit name of the parameter that gets passed into the set method/property of a class?
What is a pre-requisite for connection pooling?
Why do we need indexer in c#?
7. C# provides a default constructor for me. I write a constructor that takes a string as a parameter, but want to keep the no parameter one. How many constructors should I write?
How do you restrict the type which can be used in custom generic?
How do I declare a pure virtual function in c#?
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.....
What is difference between class and interface in c#?
List the differences between method overriding and method overloading?
What are the security issues if we send a query from the application?
How do you create multiple inheritance in C#?
5 Answers Infosys, KenIndia, Microsoft,