标签: c#
我在C#工作并遇到类似下面的声明:
var dog = anotherDog = someOtherDog;
这到底发生了什么?这只是将一个变量的值分配给另外两个变量吗?
答案 0 :(得分:2)
是
就像
anotherDog = someOtherDog; var dog = anotherDog;
您必须同时声明anotherDog和someOtherDog。