Answers for "c# how to return 2 values with different trypes"

C#
0

c# method returns multiple values

public Tuple<int, int> GetMultipleValue()
{
     return Tuple.Create(1,2);
}
Posted by: Guest on September-30-2020

Code answers related to "c# how to return 2 values with different trypes"

C# Answers by Framework

Browse Popular Code Answers by Language