In perl I can define a bunch of variables in 1 line:
my value=0;
my (a,b,c)=value;
is there some similar C# way of doing the same? here is what I have:
const bool free = true;
bool t1,t2,t3;
private void Form1_Load(object sender, EventArgs e) {
//t1,t2,t3=free;
}
=(although thea=bexpression itself yields the value ofb). The equivalent is, therefore, multiple assignments.