1 instantiation of DataRowCollection
System.Data.Common (1)
System\Data\DataTable.cs (1)
174
_rowCollection = new
DataRowCollection
(this);
11 references to DataRowCollection
netstandard (1)
netstandard.cs (1)
499
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.
DataRowCollection
))]
System.Data (1)
src\libraries\shims\System.Data\ref\System.Data.cs (1)
72
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Data.
DataRowCollection
))]
System.Data.Common (9)
System\Data\Common\AdapterUtil.Common.cs (1)
713
DataRowCollection
rowCollection = dataTable.Rows;
System\Data\DataRowCollection.cs (2)
44
/// Adds the specified <see cref='System.Data.DataRow'/> to the <see cref='System.Data.
DataRowCollection
'/> object.
107
/// Creates a row using specified values and adds it to the <see cref='System.Data.
DataRowCollection
'/>.
System\Data\DataSet.cs (1)
1393
DataRowCollection
rows = Tables[tableIndex].Rows;
System\Data\DataTable.cs (4)
41
/// Monotonically increasing number representing the order <see cref="DataRow"/> have been added to <see cref="
DataRowCollection
"/>.
43
/// <remarks>This limits <see cref="
DataRowCollection
.Add(DataRow)"/> to <see cref="int.MaxValue"/> operations.</remarks>
45
internal readonly
DataRowCollection
_rowCollection;
1763
public
DataRowCollection
Rows => _rowCollection;
System\Data\xmlsaver.cs (1)
2329
DataRowCollection
rc = dt.Rows;