J
Jack Jackson
I am a little confused by DataView.
The Item property returns a DataRowView.
However, the object returned by the enumerator used by For Each is
apparently Object since I can specify any kind of object and don't get
a compiler error:
Dim dv as DataView
For Each xx As Integer In dv
Is the declared type of the item returned by the enumerator used by
For Each documented anywhere?
Why is it not declared as DataRowView?
The Item property returns a DataRowView.
However, the object returned by the enumerator used by For Each is
apparently Object since I can specify any kind of object and don't get
a compiler error:
Dim dv as DataView
For Each xx As Integer In dv
Is the declared type of the item returned by the enumerator used by
For Each documented anywhere?
Why is it not declared as DataRowView?