I am writing some large classes that have alot of properties that could be catorgized
eg.)
Person
>FirstName
>LastName
>Address
>>Postalcode
>>pobox
>>Street
>>Apartment
this is just an example my class is not as simple as this ::(
They way i was thinking of doing this is nested classes:
VB Code:
Class Person Class Address Public Property Street() as String 'whatever> End Property End Class End Class
