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
}
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
}
c# tuple access
var numbers = Tuple.Create(1, 2, Tuple.Create(3, 4, 5, 6, 7, 8), 9, 10, 11, 12, 13 );
numbers.Item1; // returns 1
numbers.Item2; // returns 2
numbers.Item3; // returns (3, 4, 5, 6, 7, 8)
numbers.Item3.Item1; // returns 3
numbers.Item4; // returns 9
numbers.Rest.Item1; //returns 13
c# method returns multiple values
public Tuple<int, int> GetMultipleValue()
{
return Tuple.Create(1,2);
}
c# tuple
var tupleList = new List<Tuple<int, string, string, string>>();
tupleList.Add(Tuple.Create(1, "Sefat Anam", "Dhaka Bangladesh", "0.1245345"));
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us