DataTableMappingCollection.RemoveAt 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에서 지정된 DataTableMapping 개체를 제거합니다.
오버로드
RemoveAt(Int32) |
컬렉션에서 지정된 인덱스에 위치한 DataTableMapping 개체를 제거합니다. |
RemoveAt(String) |
컬렉션에서 지정된 소스 테이블 이름을 가진 DataTableMapping개체를 제거합니다. |
RemoveAt(Int32)
컬렉션에서 지정된 인덱스에 위치한 DataTableMapping 개체를 제거합니다.
public:
virtual void RemoveAt(int index);
public void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)
매개 변수
- index
- Int32
제거할 DataTableMapping 개체의 인덱스(0부터 시작)입니다.
구현
예외
DataTableMapping 개체가 지정된 인덱스와 함께 존재하지 않는 경우
예제
다음 예제에서는 컬렉션 내에서 지정된 원본 테이블 이름을 가진 개체를 검색 DataTableMapping 합니다 DataTableMappingCollection . 이 DataTableMapping 있는 경우 매핑이 제거됩니다. 이 예제에서는 컬렉션이 DataTableMappingCollection 생성되었다고 가정합니다.
public void RemoveDataTableMapping()
{
// ...
// create mappings
// ...
if (mappings.Contains(7))
mappings.RemoveAt(7);
}
Public Sub RemoveDataTableMapping()
' ...
' create mappings
' ...
If mappings.Contains(7) Then
mappings.RemoveAt(7)
End If
End Sub
적용 대상
RemoveAt(String)
컬렉션에서 지정된 소스 테이블 이름을 가진 DataTableMapping개체를 제거합니다.
public:
virtual void RemoveAt(System::String ^ sourceTable);
public void RemoveAt (string sourceTable);
abstract member RemoveAt : string -> unit
override this.RemoveAt : string -> unit
Public Sub RemoveAt (sourceTable As String)
매개 변수
- sourceTable
- String
찾을 대/소문자 구분 소스 테이블 이름입니다.
구현
예외
DataTableMapping 개체가 지정된 소스 테이블 이름과 함께 존재하지 않는 경우
예제
다음 예제에서는 컬렉션 내에서 지정된 원본 테이블 이름을 가진 개체를 검색 DataTableMapping 합니다 DataTableMappingCollection . 이 DataTableMapping 있는 경우 매핑이 제거됩니다. 이 예제에서는 컬렉션이 DataTableMappingCollection 생성되었다고 가정합니다.
public void RemoveDataTableMapping()
{
// ...
// create mappings
// ...
if (mappings.Contains("Categories"))
mappings.RemoveAt("Categories");
}
Public Sub RemoveDataTableMapping()
' ...
' create mappings
' ...
If mappings.Contains("Categories") Then
mappings.RemoveAt("Categories")
End If
End Sub
적용 대상
.NET