c# – 如何在一个语句中分配变量列表

前端之家收集整理的这篇文章主要介绍了c# – 如何在一个语句中分配变量列表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Perl有能力:
my ($a,$b,$c,$d) = foo();

其中foo返回4个变量,而不是一次分配一个变量. C#中有类似的东西吗?

解决方法

不,基本上.选项:
object[] values = foo();
int a = (int)values[0];
string b = (string)values[1];
// etc

要么:

var result = foo();
// then access result.Something,result.SomethingElse etc

要么:

int a;
string b;
float c; // using different types to show worst case
var d = foo(out a,out b,out c); // THIS WILL CONFUSE PEOPLE and is not a 
                                  // recommendation
原文链接:https://www.f2er.com/csharp/100974.html

猜你在找的C#相关文章