is it correct to declare variables like this in Vb.NET ?:
Dim a, b, c as integer
or it should be:
Dim a as integer
dim b as integer
dim c as integer
Cuz i read somewhere that if i declare "Dim a, b, c as integer" then only c will be treat as integer , a and b are variants.
