what does static void Main(string[] args) in C# mean????????
Answer Posted / vaibhav durhaya
in C# Main function returns something as string. If u dont
want something return to function u have to use Void. And
Static Keyword shows that there should be something in the
function which is static, i.e. WriteLine() is a static
member method of the Console class.
Is This Answer Correct ? | 42 Yes | 49 No |
Post New Answer View All Answers
Why do we need properties in c#?
What is ulong in c#?
What is the purpose of ienumerable in c#?
List out the differences between array and arraylist in c#?
What is array and arraylist?
Is python easier than c#?
What is the difference between static class and abstract class in c#?
Explain hash table in c# ?
What is difference between static and readonly in c#?
What are the classes contained in a single .NET DLL ?
How is the syntax written to inherit from a class in C#?Give an example ?
Explain inheritance in c#?
Why is it efficient to use System.string under System.Text.StringBuilder ?
Could you explain the difference between func vs action vs predicate?
What is expandoobject in c#?