I have a System.Windows.Forms.BindingSource
, and I'm setting its DataSource
to a SortableSearchableList<MyCustomType>
object. The line materialPropertiesData.DataSource = _sortedMaterialPropertiesList;
is throwing the following exception:
However, if I look at the _sortedMaterialPropertiesList
, the date is not what the exception claims it is:
I am the only one in my team that is experiencing this. This is the first exception that is thrown out of a large number of exceptions that are thrown with almost every interaction I have with the Form
. I'm not sure how to debug this since I am the only experiencing this. Does anyone have any suggestions as to how I can identify what is going on? Thanks!
p.s. Please let me know if I can provide more info.