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 Garbage Collection in .Net?
What are the fundamental principles of oo programming?
How long does it take to learn c# programming?
What is the use of base keyword? Tell me a practical example for base keyword’s usage?
How to override a function in c#?
Can you inherit multiple classes in c#?
Can you instantiate a struct without using a new operator in c#?
What is generic and non generic collections in c#?
What is the meaning of console writeline in c#?
What are anonymous functions in c#?
What is the difference between virtual and override in c#?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it. (Hint use event delegates) Practical Example of Passing an Events to delegates
What are generations and how are they used by the garbage collector?
Differentiate between object pooling and connection pooling in c#?
What is the difference between delegates and superdelegates?