how to return 2 values of different types in c# code example
Example 1: c# return two variables of different types
(string, string, int) LookupName(long id) // tuple return type
{
... // retrieve first, middle and myNum from data storage
return (first, middle, myNum); // tuple literal
}
Example 2: c# return two values
public void getValues( out int i, out int j)
{
i = // output 1;
j = // output 2;
}