c# - Passing void as out parameter -
this question has answer here:
is there way ignore out parameter? i.e.
bool myintisvalid = int.tryparse(stringvalue, void);
or
bool myintisvalid = int.tryparse(stringvalue, out new int());
no, have pass variable, you're free ignore afterwards.
Comments
Post a Comment