W
Windows_Account
Guest
internal static TestParam(params dynamic[] P1){
// bla
}
public static Main(){
TestParam(1,2,3,4,5); // Works
TestParam( P1
1,2,3,4,5) ); // Does Not Work;
//Params has 1 item; how to pass named params;
//like in the previous that works;
}
how to use Named Params and pass parameters like in the first call;
Continue reading...
// bla
}
public static Main(){
TestParam(1,2,3,4,5); // Works
TestParam( P1
![Frown :( :(](https://cdn.jsdelivr.net/joypixels/assets/8.0/png/unicode/64/1f641.png)
//Params has 1 item; how to pass named params;
//like in the previous that works;
}
how to use Named Params and pass parameters like in the first call;
Continue reading...