|
In C / JAVA:
Can use
int a, b, c;
a = 10;
c = b = a;
Assign a, b, and c to 10
But not at VB.net ~
The expression of b = a is not 10 and is false. . .
I think one by one assignment is too troublesome:
a = 10
b = a
c = b
--------
Is there any simple way to achieve this? |
|