I have a dataview on which I have set a rowfilter:
DataView dv = ds.Tables[0].DefaultView;
dv.RowFilter = "here my filter";
Once data filtered, I want to convert it to a DataTable. I know this is possible in .NET 2.0 and above, using it:
Datatable result = dv.ToTable();
But how to do this in .NET 1.1?