Partial
Classes:
(if Microsoft defines a class as partial, you could add a property
City to their class Client with the following declaration of a class
with the same name not using inheritance)Partial Public Class
Client
Public City As String = "Spokane"
End Class
|