Hello every body
I have defined a class in VB. Its name is "Gens" with one property "property Fit as double"
now I have:
The problem is that the answer is 30. Even there is no "
THANX A LOT
I have defined a class in VB. Its name is "Gens" with one property "property Fit as double"
now I have:
Code:
dim a,b as new gens a.fit=25 b=a a.fit=30 msgbox (b.fit)
b=a" after changing "a" but b changes by changing "a" and they are dynamically linked together how I can break this link between a and b?THANX A LOT
Comment