什么[变量] = [OtherVariable] = [YetAnotherVariable]是什么意思?

时间:2015-10-13 17:26:34

标签: c#

我在C#工作并遇到类似下面的声明:

var dog = anotherDog = someOtherDog;

这到底发生了什么?这只是将一个变量的值分配给另外两个变量吗?

1 个答案:

答案 0 :(得分:2)

就像

anotherDog = someOtherDog;
var dog = anotherDog;

您必须同时声明anotherDog和someOtherDog。