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:
  1. Class Person
  2.  
  3.     Class Address
  4.           Public Property Street() as String
  5.             'whatever>
  6.            End Property
  7.      End Class
  8.  
  9. End Class