C# 函数返回多个值的方法
2021-02-02 15:17
标签:code 个人 span 元素 pre 定义 style 支持 定义函数 有时候我们需要一个函数返回多个值,网上更多是用out实现,我个人很喜欢用tuple方法。 tuple是一个元组,最多支持7个元素,再多需要嵌套等方法实现。 使用元组定义函数的方法如下: 元组还支持多种类型的值。 在调用函数时,使用Item*来调用元组内的元素。 C# 函数返回多个值的方法 标签:code 个人 span 元素 pre 定义 style 支持 定义函数 原文地址:https://www.cnblogs.com/masonmei/p/11546377.htmlpublic static Tuplestring,string> TupleFun()
{
string[] T = {‘hello‘,‘world‘};
Tuplestring, string> tup = new Tuplestring, string>(T[0], T[2]);
return tup;
}
public static Tuplestring,int> TupleFun()
{
string T = ‘hello’;
int q = 6;
Tuplestring, int> tup = new Tuplestring, int>(T, q);
return tup;
}
var tuple = TupleFun();
print(tuple.Item1);
print(int.Parse(tuple.Item2));