If I have a method like this:
public void DoSomething(int Count, string[] Lines) { //Do stuff here... }
Why can\'t I call it like this?<
You can construct it while passing it in like so:
DoSomething(10, new string[] { "One", "Two", "Three"});