Check out example codes for "c# method returns multiple values". It will help you in understanding the concepts better.
Code Example 1
public Tuple<int, int> GetMultipleValue()
{
return Tuple.Create(1,2);
}
Learn ReactJs, React Native from akashmittal.com