Код: Выделить всё
public void DoSomething(int Count, string[] Lines)
{
//Do stuff here...
}
Код: Выделить всё
DoSomething(10, {"One", "Two", "Three"});
Источник: https://stackoverflow.com/questions/141 ... in-c-sharp
Код: Выделить всё
public void DoSomething(int Count, string[] Lines)
{
//Do stuff here...
}
Код: Выделить всё
DoSomething(10, {"One", "Two", "Three"});