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
How does split work in c#?
What is serialization and deserialization in c# with example?
What is writeline in c#?
What is array class in c#?
What is datatable in c#?
Why we use get set in c#?
Can you inherit from a sealed class?
Is null empty or whitespace c#?
How do you implement thread synchronization (object.wait, notify,and criticalsection) in c#?
What is difference between ilist and list?
Does hashset allow duplicates c#?
Why abstraction is used in c#?
What is lazy in c#?
What is alias in c#?
Explain the process of polymorphism with an example?