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?
DoSomething(10, {"One", "Two", "Three"});
What would be the correct (but hopefully not the long way)?
|
|
If I have a method like this:
Why can't I call it like this?
What would be the correct (but hopefully not the long way)?
|
|||
|
|
|
|
you can do this :
provided all the objects are of the same type you don't need to specify the type in the array definition |
||||||||||
|
|
|
Try this:
|
||
|
|
|
|
You can construct it while passing it in like so:
|
|||
|
|
|
|
If
Output: $ ./d.exe a b c d e f |
|||
|