G
gwainguard
Hi from reading the ECMA spec. I know understand that the bracketed
code after 'void Main' is an instruction that method Main accepts a
string parameter array.
Can someone explain to me why this is so? and why by default this
method always accepts string arguments?
Indebted for your time,
GM.
class Program
{
static void Main(string[] args)
{
}
}
code after 'void Main' is an instruction that method Main accepts a
string parameter array.
Can someone explain to me why this is so? and why by default this
method always accepts string arguments?
Indebted for your time,
GM.
class Program
{
static void Main(string[] args)
{
}
}