I have just watched a video presenting the new features of C# 7. Among others, it introduces the possibility to return a tuple type (e.g.: (int, int)
, which, I believe, is just a syntactic sugar for Tuple<int, int>
). Thus, if we have a method returning multiple values, there are 3 possibilities in C# on how to do it:
(int first, int second) ReturnTuple()
{
return (1, 2);
}
int ReturnOutParam(out int second)
{
second = 2;
return 1;
}
CustomObject ReturnObject()
{
return new CustomObject
{
First = 1,
Second = 2
};
}
I believe, there are no more ways to do it - if yes, please, correct me.
Which of those three methods is the right one? And in which cases can we use the remaining two? With every new C# release, I have the feeling that there are one or two design patterns that just became obsolete in the .NET world. Some features were very useful (like generics, partials, LINQ, lambdas, async/await or null propagator). Others are very situational (dynamic, nameof). And then there are those that just don't make sense to me (property auto-initializers, tuple return values or local functions).
First and foremost, a tuple like
(int, int)
is syntactic sugar forValueTuple<int, int>
. The differences betweenTuple
andValueTuple
are:ValueTuple
is a value type, so there's no need to allocate an object on the heapValueTuple
is mutableValueTuple
has (obviously) built-in language support, and it lets you name the tuple items through a custom attribute (TupleElementNamesAttribute
). WithTuple
, you'll only getItem1
,Item2
etc.With each new language version some features become obsolete. For instance, the
delegate { }
syntax was superseded by lambdas. You could argue thatout
parameters fits in this category, but that's subjective. Yet all the features need to stay there for backwards compatibility.For instance,
bool int.TryParse(string input, out int value)
should have becomeint? int.TryParse(string input)
with the inclusion of nullable value types to the language, but the old function was already there in the framework, so it had to stay.My rule of thumb would be: use value tuples for private methods or utility functions, but prefer full-fledged structs for any public API, it just feels cleaner this way. I generally avoid
out
params except occasionally for private methods.I don't get why some of these new features don't make sense to you: