Let's 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?
EDIT:
Although the question has been voted to be dupe of Optional Output Parameters it only is if you look from the method creator's perspective. If you're the user of the method, you're interested not in making the parameter optional, just not using it without declaring the variable. And while this is not possible, with C# 7.0 it is possible to declare it in method call. So instead of:
int unusedValue;
TryGetValue("key", out unusedValue);
you get:
TryGetValue("key", out int unusedValue);
or even:
TryGetValue("key", out _);
This should be added as an answer, but:
- I can't do this for this question, because it was marked as a dupe;
- the question this question is seemed as a dupe of actually asks for a different thing.