Every C# application must contain a single
Main method specifying a point where program execution is about to begin. In C#,
Main is capitalized.
Main can only return int or void, and accepts an optional string array argument to represent command-line parameters:
static int Main(string[] args)
{
//...
return 0;
}
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати