Immediate window: how to pass literal array
Here's a basic question:
In the immediate window, I can call Main: for example if main is defined as static int Main() then I can do:
? Program.Main()
in the immediate window and get the int returned.
BUT: how do I pass a string array to Main (or any function) via the immediate window?
? Program.Main({"a", "b"}) doesn't work.
classProgram
{
staticint Main(string[] args)
{
return 5 + 6;
}
}

