Main file in C#
Below is an example ofMain
method.class TestClass
{
static void Main(string[] args)
{
Console.WriteLine(args.Length);
}
}
Main
method.class TestClass
{
static void Main(string[] args)
{
Console.WriteLine(args.Length);
}
}
In this page (written and validated by A. Gawali) you learned about Main file in C# . What's Next? If you are interested in completing C# tutorial, we encourage you simply to start here: C# Tutorial.
Share On: |