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 is a decimal c#?
How do you comment in c#?
What is exe file in c#?
What is int32 maxvalue?
What do u mean by delegation?
What are Memory foot print of an exe?
Which language is used for desktop application?
What is the difference between finalize() and dispose() methods?
What is difference between singleordefault and firstordefault?
Structs are not reference types. Can structs have constructors?
What are the boolean data types in c#?
What is an example of a delegate?
Can we override constructor in c#?
Why data types are important in c#?
What is concrete method in c#?