I have a datatable AVT of type AvailDataTable. The following code works to create a new datatable from AVT:
AvailDataTable AVT1 = (AvailDataTable) AVT.DefaultView.Table;
However, the code:
AvailDataTable AVT1 = (AvailDataTable) AVT.DefaultView.ToTable();
fails with the message "Unable to cast object of type 'system.data.datatable' to type 'AvailDataTable'.
Can someone explain why the first cast works but the second one doesn't? Thanks!