I would like to create a custom datatable class in which the datarow class property "Item" is overloaded so that it returns a trimmed value.
How do I start? Maybe an example?
Class MyDatatable
Inherits DataTable
Public Overloads Property Item(ByVal columnIndex As Integer) As Object
Get
End Get
Set(value As Object)
End Set
End Property
End Class
Thx!
DataTableand contains anItemproperty.