With the addition of the Tuple class in .net 4, I have been trying to decide if using them in my design is a bad choice or not. The way I see it, a Tuple can be a shortcut
Don't judge me, I'm not an expert, but with new Tuples in C# 7.x now, you could return something like:
return (string Name1, int Name2)
At least now you can name it and developers might see some information.