B
buu
It's dummy question, I know, but wanna be sure...
is this a proper way to keep a reference to an object:
public class Class1
private o1 as Object1
public sub New(byref vO as object1)
o1=vO
end sub
end class
on this way we keep just a reference to a object (32-bit) or we create a new
one?
is this a proper way to keep a reference to an object:
public class Class1
private o1 as Object1
public sub New(byref vO as object1)
o1=vO
end sub
end class
on this way we keep just a reference to a object (32-bit) or we create a new
one?