Explain use of abstract and sealed classes in c#?
interface a { Method1() Method2() } class b: a { override Method1() override Method2() } what will happen & why?
Explain static class members.
What is the difference between arraylist and list in c#?
What is the Use Of Interfaces? For example I have a interface as shown below? Interface IMyInterface { public void MyMethod(); } class MyClass : IMyInterface { public void Mymethod() { Some Code } } class Program { static void Main(string[] args) { MyClass obj = new MyClass(); obj.MyMethod(); } } Here What is My Question is? If i remove Interface and run this code, it will executed then what is the Use of the interface? Can any one give me the solution for this Problem? Thanks in Advance!
What is the difference between ienumerable and icollection?
Does c# replace c++?
How do I make a dll in c#?
What are the types of threading models ?
What are tuples c#?
Explain About Assembly in .NET, types of assemblies, their difference, How to register into GAC. How to generate the strong names & its use.
Tell me the difference between call by value and call by reference.
Explain the serialization in .net