24 out of 37 rated this helpful - Rate this topic

Main

The Main method is the entry point of your program, where the program control starts and ends. It is declared inside a class or struct. It must be static. It can either have a void or int return type. The Main method is where you create objects and invoke other methods. The Main method can be declared without parameters or with parameters. The latter form allows your program to read command-line arguments.

See the following topics for more information and examples on using the Main method:

See Also

C# Language Features

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.