C
Craig Buchanan
If I declare a class within another class like:
Class ParentClass
...
Class ChildClass
...
End Class
End Class
How do I reference a property in the ParentClass in the ChildClass? If the
ChildClass is inherited from another class (like CollectionBase), do that
affect the reference?
Also, when an instance of ParentClass is created, is an instance of
ChildClass also created?
Thanks,
Craig Buchanan
Class ParentClass
...
Class ChildClass
...
End Class
End Class
How do I reference a property in the ParentClass in the ChildClass? If the
ChildClass is inherited from another class (like CollectionBase), do that
affect the reference?
Also, when an instance of ParentClass is created, is an instance of
ChildClass also created?
Thanks,
Craig Buchanan