W
Windows_Account
Guest
internal static TestParam(params dynamic[] P1){
// bla
}
public static Main(){
TestParam(1,2,3,4,5); // Works
TestParam( P11,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( P11,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...