DataTableCollection.RemoveAt(Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션의 지정한 인덱스에서 DataTable 개체를 제거합니다.
public:
void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
매개 변수
- index
- Int32
제거할 DataTable
의 인덱스입니다.
예외
컬렉션에 지정된 인덱스의 테이블이 없는 경우
예제
다음 예제에서는 및 CanRemove 메서드를 Contains 사용하여 인덱스 10과 함께 테이블이 있는지 여부를 테스트합니다. 이 RemoveAt 경우 테이블을 제거하기 위해 메서드가 호출됩니다.
public static void DataTableCollectionRemoveAt()
{
// Create a DataSet with two tables and then
// remove the tables from the collection using RemoveAt.
DataSet dataSet = new DataSet();
// Create Customer table.
DataTable customerTable = new DataTable("Customers");
customerTable.Columns.Add("customerId",
typeof(int)).AutoIncrement = true;
customerTable.Columns.Add("name", typeof(string));
customerTable.PrimaryKey = new DataColumn[] { customerTable.Columns["customerId"] };
// Create Orders table.
DataTable ordersTable = new DataTable("Orders");
ordersTable.Columns.Add("orderId",
typeof(int)).AutoIncrement = true;
ordersTable.Columns.Add("customerId", typeof(int));
ordersTable.Columns.Add("amount", typeof(double));
ordersTable.PrimaryKey = new DataColumn[] { ordersTable.Columns["orderId"] };
dataSet.Tables.AddRange(new DataTable[] { customerTable, ordersTable });
// Remove all tables.
// First check to see if the table can be removed,
// then remove it.
//
// You cannot use a foreach when removing items
// from a collection.
while (dataSet.Tables.Count > 0)
{
DataTable table = dataSet.Tables[0];
if (dataSet.Tables.CanRemove(table))
dataSet.Tables.RemoveAt(0);
Console.WriteLine("dataSet has {0} tables",
dataSet.Tables.Count);
}
}
Public Sub DataTableCollectionRemoveAt()
' Create a DataSet with two tables and then
' remove the tables from the collection using RemoveAt.
Dim dataSet As New DataSet()
' Create Customer table.
Dim customerTable As New DataTable("Customers")
customerTable.Columns.Add("customerId", _
GetType(Integer)).AutoIncrement = True
customerTable.Columns.Add("name", GetType(String))
customerTable.PrimaryKey = New DataColumn() _
{customerTable.Columns("customerId")}
' Create Orders table.
Dim ordersTable As New DataTable("Orders")
ordersTable.Columns.Add("orderId", _
GetType(Integer)).AutoIncrement = True
ordersTable.Columns.Add("customerId", GetType(Integer))
ordersTable.Columns.Add("amount", GetType(Double))
ordersTable.PrimaryKey = New DataColumn() _
{ordersTable.Columns("orderId")}
dataSet.Tables.AddRange(New DataTable() _
{customerTable, ordersTable})
' Remove all tables.
' First check to see if the table can be removed,
' then remove it.
'
' You cannot use a foreach when removing items
' from a collection.
Do While (dataSet.Tables.Count > 0)
Dim table As DataTable = dataSet.Tables(0)
If (dataSet.Tables.CanRemove(table)) Then
dataSet.Tables.RemoveAt(0)
End If
Console.WriteLine("dataSet has {0} tables", _
dataSet.Tables.Count)
Loop
End Sub
설명
이 CollectionChanged 이벤트는 테이블이 성공적으로 제거될 때 발생합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET