-
Notifications
You must be signed in to change notification settings - Fork 1
Main
Mario Gutierrez edited this page Jan 7, 2017
·
2 revisions
Some variations of the Main
method.
static void Main() { }
static int Main() { return 0; }
static int Main(string[] args) { return 0; }
Command-line args can also be retrieved using System.Environment.GetCommandLineArgs()
.
- Abstract Classes
- Access Modifiers
- Anonymous Methods
- Anonymous Types
- Arrays
- Attributes
- Console I/O
- Constructors
- Const Fields
- Delegates
- Enums
- Exceptions
- Extension Methods
- File IO
- Generics
- Interfaces
- Iterators
- LINQ
- Main
- Null Operators
- Parameters
- Polymorphism
- Virtual Functions
- Reflection
- Serialization
- Strings
- Value Types
- "Base" Keyword
- "Is" and "As"
- "Sealed" Keyword
- nameof expression