Hi,
I would like create a custom DataRow that will have -let's say- a propery called IsCheapest.
public class RateDataRow : DataRow
{
protected internal RateDataRow(DataRowBuilder builder) : base(builder)
{
}
public bool IsCheapest { get; set ;}
}
And I want to have a new DataTable that contains only *RateDataRow*s so that .NewDataRow() returns RateDataRow instance as a new row.
what should be the implementation on the class that extends DataTable?
Thanks,