what does static void Main(string[] args) in C# mean????????
Answer Posted / cc
WriteLine is a procedure/ method in the class called Console.
It doesn't have any relation with Static keyword.
Void is called "nothing" or no more return type required by the function.
Static is a keyword used by Main method because to avoid manipulation of Main Function.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between read and readline in c#?
Can we inherit partial class in c#?
Is comparable a functional interface?
What is scope c#?
What is the use of delegates in c#?
What is the use of console readkey in c#?
What is difference between an Structure and Class?
What is method and function in c#?
Why do we need events in c#?
Explain about CTS?
Can you pass value types by reference to a method?
Do unused Namespaces in c# affect run-time performance?
What is the use of ienumerable?
What is a nested type. Give an example?
What is hashtable in c# with example?