N
Nicolas
Hello,
I used to do it but don't remember anymore. How to implement an interface automaticaly when creating my class when I don't want to retype every single line of code for each property in the class
Interface ICustomer
Property CustomerID() As String
End Interface
Public Class Customer
Implements ICustomer
'when finish typing the above line it should automaticaly populate the property CustomerID
End Class
I used to do it but don't remember anymore. How to implement an interface automaticaly when creating my class when I don't want to retype every single line of code for each property in the class
Interface ICustomer
Property CustomerID() As String
End Interface
Public Class Customer
Implements ICustomer
'when finish typing the above line it should automaticaly populate the property CustomerID
End Class