Ich habe eine Datentabelle AVT vom Typ AvailDataTable. Der folgende Code funktioniert, um eine neue Datentabelle aus AVT zu erstellen:
AvailDataTable AVT1 = (AvailDataTable) AVT.DefaultView.Table;
Allerdings ist der Code:
AvailDataTable AVT1 = (AvailDataTable) AVT.DefaultView.ToTable();
schlägt mit der Meldung "Unable to cast object of type 'system.data.datatable' to type 'AvailDataTable'.
Kann jemand erklären, warum der erste Wurf funktioniert, der zweite aber nicht? Danke!