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;

}

}

[889 byte] By [mlopez] at [2007-12-16]
# 1
Okay, I discovered you fortunately can do this is the immediate window:
string[] args={"a", "b"};
? Main(args)

But for some reason this apparently can't work:
? Main({"a", "b"})

mlopez at 2007-9-8 > top of Msdn Tech,Visual C#,Visual C# General...