what does static void Main(string[] args) in C# mean????????
Answer Posted / elan
It is the code starting point and when a function specified with static it will be always available in App Domain (in application). Also no need to create any instance and Classname.Function / Method name will work. The usage of string args[] is read the command line argument.
| Is This Answer Correct ? | 23 Yes | 5 No |
Post New Answer View All Answers
What is windows application in c#?
Explain how to parse a datetime string?
What is namespace c#?
What is .cshtml file?
Why static variables are used?
What is the main purpose of delegates in c#?
If a child class instance is created, which class constructor is called first - base class or child class?
Write a program in C# for checking a given number is PRIME or not.
What is application object in c#?
What is the difference between Decorator and Adapter pattern?
How can i Spawn a Thread
What are Memory foot print of an exe?
What is the difference between throw and throw ex?
What is the base class of all classes in c#?
What is difference between string and stringbuffer in c#?