what does static void Main(string[] args) in C# mean????????
Answer Posted / subhash
This can be explained as below
public : since the method will be accessed by the other
classes(.net runtime). That is why access modifier is Public
Static:
.net runtime environment call static method of the class
where main is defined. By making Main method as static .net
runtime environment do not need to make object of the class.
runtime environment call the method something like as stated
below.
Class A
{
A()
{}
public static void Main(string[] agrs)
{
}
}
.net Runtime-->
A.Main(args)
Void :
Main method does not return anything
(string[] args):
Here we can pass any number of parameter to the class.
lets say we are making an exe taking 2 parameters then we
can pass parameters to the main method
| Is This Answer Correct ? | 89 Yes | 8 No |
Post New Answer View All Answers
What's c# ?
What is class in oops with example in c#?
What are the two kinds of properties in c#.
What is jit? What are the different types of jit?
i want o/p 011242110 in c# code.
Why we use get set in c#?
What happens if a static constructor throws an exception?
What is the use of command builder?
What is difference between list and dictionary in c#?
What is dll file in c#?
How are Windows programs different from normal C-programs?
In c#, what will happen if you do not explicitly provide a constructor for a class?
What is event and delegates in c#?
Should I use double or float?
Why do we need reflection in c#?