What is string interpolation in c#?
What?s the difference between // comments, /* */ comments and /// comments?
Explain about finalize method?
What is the difference between function and method in c#?
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?
What is .net console?
What does assert() do in c#?
What is public, private, protected, internal and internal protected?
What is use of list in c#?
What is jagged array in c#?
What are the types of attributes in c#?
What?s the difference between System.String and System.StringBuilder classes?
I have a class declared as below public class a { public void add() {} } What is the diference between a a1 =new a; and simply a a1;