gpt4 book ai didi

c# - 将多个值返回给方法调用者

转载 作者:IT王子 更新时间:2023-10-29 03:27:49 25 4
gpt4 key购买 nike

我读了C++ version of this question但并没有真正理解它。

谁能解释清楚是否可以用 C# 完成,以及如何完成?

最佳答案

在 C# 7 及更高版本中,请参阅 this answer .

在以前的版本中,您可以使用.NET 4.0+'s Tuple :

例如:

public Tuple<int, int> GetMultipleValue()
{
return Tuple.Create(1,2);
}

具有两个值的元组具有 Item1Item2 作为属性。

关于c# - 将多个值返回给方法调用者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/748062/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com