相关文章推荐
玩足球的烤土司  ·  Java读取jar信息 ...·  1 年前    · 
一身肌肉的山楂  ·  c++ read lines from ...·  1 年前    · 
狂野的投影仪  ·  JavaScript ...·  1 年前    · 
public ref class DataRowCollection sealed : System::Data::InternalDataCollectionBase
public ref class DataRowCollection : System::Data::InternalDataCollectionBase
public sealed class DataRowCollection : System.Data.InternalDataCollectionBase
[System.Serializable]
public class DataRowCollection : System.Data.InternalDataCollectionBase
type DataRowCollection = class
    inherit InternalDataCollectionBase
[<System.Serializable>]
type DataRowCollection = class
    inherit InternalDataCollectionBase
Public NotInheritable Class DataRowCollection
Inherits InternalDataCollectionBase
Public Class DataRowCollection
Inherits InternalDataCollectionBase
DataRowCollection

本节中的第一个示例打印 中每一行的第 1 列 DataRowCollection 的值。 第二个示例使用 NewRow 方法创建的新行添加到 DataRowCollection

private void ShowRows(DataTable table) // Print the number of rows in the collection. Console.WriteLine(table.Rows.Count); // Print the value of columns 1 in each row foreach(DataRow row in table.Rows) Console.WriteLine(row[1]); private void AddRow(DataTable table) DataRowCollection rowCollection = table.Rows; // Instantiate a new row using the NewRow method. DataRow newRow = table.NewRow(); // Insert code to fill the row with values. // Add the row to the DataRowCollection. table.Rows.Add(newRow); Private Sub ShowRows(Byval table As DataTable) ' Print the number of rows in the collection. Console.WriteLine(table.Rows.Count) Dim row As DataRow ' Print the value of columns 1 in each row For Each row In table.Rows Console.WriteLine(row(1)) End Sub Private Sub AddRow(ByVal table As DataTable) ' Instantiate a new row using the NewRow method. Dim newRow As DataRow = table.NewRow() ' Insert code to fill the row with values. ' Add the row to the DataRowCollection. table.Rows.Add(newRow) End Sub

DataRowCollection 是 的主要组件 DataTable DataColumnCollection 虽然 定义表的架构, DataRowCollection 但 包含表的实际数据,其中 中的每个 DataRow 代表 DataRowCollection 一行。

可以调用 Add Remove 方法来插入和删除 DataRow 中的 DataRowCollection 对象。 还可以调用 方法来搜索 DataRow 主键列中包含特定值的对象,并 Contains 调用 Find 方法搜索基于字符的数据以获取单个单词或短语。

对于其他操作,例如排序或筛选 DataRowCollection ,请在 的关联 DataTable 上使用 DataRowCollection 方法。