5 ms·
Agree with the complaint but not the workaround; there is Tuple<string, string>, after all, so maybe something like this? Tuple<string, string> fullName = P
by sootzoo 12y ago
Agree with the complaint but not the workaround; there is Tuple<string, string>, after all, so maybe something like this?
Tuple<string, string> fullName = ParseName(fullName);
var firstName = fullName.Item1;
var lastName = fullName.Item2;