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
Define Virtual folder?
What is virtual class in C#?
Is collection a data structure?
Is c# int immutable?
Explain the term inheritance in C#.
When Should You Call The Garbage Collector In .net?
Distinguish between finally and finalize blocks?
What is default value of enum c#?
What is boolean method?
Can you create sealed abstract class in c#?
Explain About Virtual functions and their use.
What is the difference between add and addrange in c#?
What is a value type in c#?
What is the difference between read and readline in c#?
Can a class have more than 1 destructor?