I have the following in C# and I'm trying to convert it to vb.net.
internal class MyDataRow : List<DataRowItem>, IDataRow
{
}
The rest of the code I've managed to convert myself it's just the empty class that I'm struggling with. This is so I can read in files with any columns and display them.
Edit:
Looking at the comment given and online I've got to the following:
Class MyDataRow
Inherits List(Of DataRowItem)
Implements IDataRow
End Class
I'm getting an error on the implements section.
This gives the following errors: