다음을 통해 공유


DataTableCollection.Clear 메서드

정의

모든 DataTable 개체의 컬렉션을 지웁니다.

public:
 void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()

예제

다음 예제에서는 의 를 DataTableCollectionDataSet가져오고 모든 테이블의 컬렉션을 지웁니다.

private void ClearTables()
{
    // Get the DataSet of a DataGrid control.
    DataSet dataSet = (DataSet)DataGrid1.DataSource;
    DataTableCollection tables = dataSet.Tables;

    // Clear the collection.
    tables.Clear();
}
Private Sub ClearTables()
   ' Get the DataSet of a DataGrid control.
   Dim dataSet As DataSet = CType(DataGrid1.DataSource, DataSet)
   Dim tables As DataTableCollection = dataSet.Tables

   ' Clear the collection.
   tables.Clear
End Sub

설명

컬렉션에서 특정 DataTable 을 제거하려면 메서드를 Remove 사용합니다.

적용 대상