Managed C++...

How do you get the command line string passed into the app?

Its for a console program.

Code:
int main(?????)
{
Console::WriteLine("This is the command line: {0}", ?????);
Console::ReadLine();
return 0;
}