在 perl 中,我可以在 1 行中定义一堆变量:
my value=0;
my (a,b,c)=value;
是否有一些类似的 C# 方法可以做同样的事情?这是我所拥有的:
const bool free = true;
bool t1,t2,t3;
private void Form1_Load(object sender, EventArgs e) {
//t1,t2,t3=free;
}
在 perl 中,我可以在 1 行中定义一堆变量:
my value=0;
my (a,b,c)=value;
是否有一些类似的 C# 方法可以做同样的事情?这是我所拥有的:
const bool free = true;
bool t1,t2,t3;
private void Form1_Load(object sender, EventArgs e) {
//t1,t2,t3=free;
}