What is use of hashtable in c#?
How do I enforce const correctness in c#?
What is gac? What are the steps to create an assembly and add it to the gac?
Is equal in c#?
What is the delegate in c#?
Explain static class members.
What is serialization and deserialization in c# with example?
What is this keyword in C#?
What debugging tools come with the .NET SDK?
How do I make a dll in c#?
How do you concatenate in c#?
What do you mean by string objects are immutable?
i have a question which is quite simple but yet complicated for me my question is why do we use void, if it does not return anything to the compiler? if it is used for normal display it can also be done by what is called Console.Write() or Consol.WriteLine() and if i do not use void with my method then my compiler throws me an error. if i return a value say integer then i write public int fun() display of the result can also be done here then why is it so necessary to use void with a function and why so compiler throw us an error if v don't use void return type?