I read the C++ version of this question but didn\'t really understand it.
Can someone please explain clearly if it can be done and how?
you can try this "KeyValuePair"
private KeyValuePair GetNumbers() { return new KeyValuePair(1, 2); } var numbers = GetNumbers(); Console.WriteLine("Output : {0}, {1}",numbers.Key, numbers.Value);
Output :
Output : 1, 2