Assume I have a function with out parameter, however I do not need its value. Is there a way to pass no actual parameter if given result will be thrown away anyway?
Sorry, acutally it turned out to be dupe of C# 4 Optional Output Parameters
|
Assume I have a function with Sorry, acutally it turned out to be dupe of C# 4 Optional Output Parameters |
|||||
|
|
You cannot do this, but there's no rule saying that you have to use the value that comes back. You can simply pass a temporary variable that you never use again. C# 4.0 allows optional parameters, but EDIT: BTW, you can also overload the method:
|
||||
|
|
While you can't actually make the out parameter optional, you could simply create an overload for the function without the out parameter, which would then take away the need to create a temporary variable.
|
|||
|
|
Not sure about C#, but in VB.Net you can simply pass in a constant to an output (byref) parameter. So if you have an integer, as an output parameter, you don't have to pass in an actual variable, you can just pass in 0, or any other valid integer. For Objects, including strings you can just pass in Nothing (Null in C#) and everything works fine. I'm not sure where the variable is stored, probably just on the stack as in any other parameter you pass in, and it disappears when the function exits. |
|||
|