What are functions c#?
Is c# code is managed or unmanaged code?
is it possible to access a remote web service Without UDDI?
Is char * null terminated?
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 compiler of c#?
What is the solution if you need to manipulate sets of items?
What is difference between interface and abstraction?
Why can?t you specify the accessibility modifier for methods inside the interface?
What is the difference between system.string and system.text.stringbuilder classes?
Explain About Web.config
What is serialization of data?
what are the differences b/w structure and class?