In C#, the main method takes a parameter called args. What is the data type of this parameter? code example
Example: static void main(string args) c# meaning
class TestClass
{
static void Main(string[] args)
{
// Display the number of command line arguments.
Console.WriteLine(args.Length);
}
}