DataRowCollection.Remove 메서드
컬렉션에서 지정된 DataRow를 제거합니다.
네임스페이스: System.Data
어셈블리: System.Data(system.data.dll)
구문
‘선언
Public Sub Remove ( _
row As DataRow _
)
‘사용 방법
Dim instance As DataRowCollection
Dim row As DataRow
instance.Remove(row)
public void Remove (
DataRow row
)
public:
void Remove (
DataRow^ row
)
public void Remove (
DataRow row
)
public function Remove (
row : DataRow
)
매개 변수
- row
제거할 DataRow입니다.
설명
행이 제거되면 그 행의 모든 데이터가 손실됩니다. DataRow 클래스의 Delete 메서드를 호출하여 단순히 행에 제거 표시를 할 수도 있습니다. Remove을 호출하는 것은 Delete를 호출한 다음 AcceptChanges를 호출하는 것과 같습니다.
Clear 메서드를 사용하여 컬렉션의 모든 멤버를 한 번에 제거할 수도 있습니다.
예제
다음 예제에서는 Remove 메서드를 사용하여 DataRowCollection 개체에서 찾은 행을 삭제합니다. 이 예제에서는 먼저 Contains 메서드를 사용하여 행 컬렉션에 행이 있는지 확인합니다. 행이 있으면 Find 메서드를 사용하여 특정 행을 찾은 다음 Remove 메서드를 사용하여 그 행을 제거합니다.
Private Sub RemoveFoundRow(ByVal table As DataTable)
Dim rowCollection As DataRowCollection = table.Rows
' Test to see if the collection contains the value.
If rowCollection.Contains(TextBox1.Text) Then
Dim foundRow As DataRow = rowCollection.Find(TextBox1.Text)
rowCollection.Remove(foundRow)
Console.WriteLine("Row Deleted")
Else
Console.WriteLine("No such row found.")
End If
End Sub
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0, 1.0에서 지원
참고 항목
참조
DataRowCollection 클래스
DataRowCollection 멤버
System.Data 네임스페이스
Add
Clear
Contains
Find