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