Everyone raves about BindingList in place of DataTable.
How do you guys overcome the problem of column flexibility? For BindingList I need to define and implement T object. If any new columns needed to be added, I need to add new properties to T object....while in DataTable this is much easier.
BindingList<T> samples = new BindingList<T>();
Is that something you live with or is there a relatively easy way to overcome thing?
using c# 2.0, compact framework.