Hi
I have declared a structure in side a class. I'm using it like a usertype within the class. Can I create a new structure outside of the class defined by the structure inside of the class. Something like this...
public class MyClass
public structure MyStructure
public k as integer
public v as integer
end structure
end class
public class AnotherClass
dim S as new MyClass.MyStructure
end class
Thanks.
I have declared a structure in side a class. I'm using it like a usertype within the class. Can I create a new structure outside of the class defined by the structure inside of the class. Something like this...
public class MyClass
public structure MyStructure
public k as integer
public v as integer
end structure
end class
public class AnotherClass
dim S as new MyClass.MyStructure
end class
Thanks.