Helper class that mimics EnumerableRowCollection, but exposes the source DataTable as public property.
Definition
Namespace:Telerik.Windows.Data
Assembly:Telerik.Windows.Data.dll
Syntax:
C#
public class EnumerableDataRowCollection : IEnumerable<DataRow>, IEnumerable
Inheritance: objectEnumerableDataRowCollection
Implements:
Constructors
Initializes a new instance of the EnumerableDataRowCollection class.
C#
public EnumerableDataRowCollection(DataTable dataTable)
The source data table.
Properties
Methods
Returns an enumerator that iterates through the collection.
C#
public IEnumerator<DataRow> GetEnumerator()
A IEnumerator<T> that can be used to iterate through the collection.
Implements: