A
Antonio Paglia
Imaginate you have one method that accept some arguments like:
1- a control
2- un Type
(MyType)
3- el nombre de una Propiedad "PropertyName"
Example:
.Add(Me.txtCustomerID, GetType(Customer), "CustomerID")
Inside this method, I use reflection tu scan all properties.
I want avoid to use literals like "CustomerID" to refer the properties. I
would wish another strong method to retrieve the Name of the property.
Any help will be appreciated
TIA
Antonio
1- a control
2- un Type
(MyType)
3- el nombre de una Propiedad "PropertyName"
Example:
.Add(Me.txtCustomerID, GetType(Customer), "CustomerID")
Inside this method, I use reflection tu scan all properties.
I want avoid to use literals like "CustomerID" to refer the properties. I
would wish another strong method to retrieve the Name of the property.
Any help will be appreciated
TIA
Antonio