P
Peter
I have the following class:
public class Test
private shared mObject as Object = New myclass.object
....
Normally, a new instance of that class will share the existing value of
mObject. However, for some special cases, I need it to reinitialize mObject
as if mObject is not declared as shared.
public class Test
private shared mObject as Object = New myclass.object
....
Normally, a new instance of that class will share the existing value of
mObject. However, for some special cases, I need it to reinitialize mObject
as if mObject is not declared as shared.