Explain About a class access specifiers and method access specifiers.
Explain the differences between static, void and public 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!
Explain the features of an abstract class in net.
Between windows authentication and sql server authentication, which one is trusted and which one is untrusted?
How can you access a private method of a class?
What is difference between float and integer?
Which is faster list or dictionary in c#?
what is meant inheritance. can you exaplain what kind inhertance ussed in your project
How do I type a whitespace character?
Explain polymorphism in c# with a simple example?
What is the best method to fill the GridView. using SqlDataReader or Dataset and why
Which string method is used for concatenation of two strings in c#?