CodeExpressionCollection 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
개체의 CodeExpression 컬렉션을 나타냅니다.
public ref class CodeExpressionCollection : System::Collections::CollectionBase
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Serializable]
public class CodeExpressionCollection : System.Collections.CollectionBase
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
[<System.Serializable>]
type CodeExpressionCollection = class
inherit CollectionBase
Public Class CodeExpressionCollection
Inherits CollectionBase
- 상속
- 특성
예제
다음 예제에서는 클래스 메서드를 사용하는 방법을 CodeExpressionCollection 보여 줍니다. 이 예제에서는 클래스의 새 인스턴스를 만들고 메서드를 사용하여 컬렉션에 문을 추가하고, 인덱스를 반환하고, 특정 인덱스 지점에서 특성을 추가하거나 제거합니다.
// Creates an empty CodeExpressionCollection.
CodeExpressionCollection collection = new CodeExpressionCollection();
// Adds a CodeExpression to the collection.
collection.Add( new CodePrimitiveExpression(true) );
// Adds an array of CodeExpression objects to the collection.
CodeExpression[] expressions = { new CodePrimitiveExpression(true), new CodePrimitiveExpression(true) };
collection.AddRange( expressions );
// Adds a collection of CodeExpression objects to the collection.
CodeExpressionCollection expressionsCollection = new CodeExpressionCollection();
expressionsCollection.Add( new CodePrimitiveExpression(true) );
expressionsCollection.Add( new CodePrimitiveExpression(true) );
collection.AddRange( expressionsCollection );
// Tests for the presence of a CodeExpression in the
// collection, and retrieves its index if it is found.
CodeExpression testComment = new CodePrimitiveExpression(true);
int itemIndex = -1;
if( collection.Contains( testComment ) )
itemIndex = collection.IndexOf( testComment );
// Copies the contents of the collection beginning at index 0 to the specified CodeExpression array.
// 'expressions' is a CodeExpression array.
collection.CopyTo( expressions, 0 );
// Retrieves the count of the items in the collection.
int collectionCount = collection.Count;
// Inserts a CodeExpression at index 0 of the collection.
collection.Insert( 0, new CodePrimitiveExpression(true) );
// Removes the specified CodeExpression from the collection.
CodeExpression expression = new CodePrimitiveExpression(true);
collection.Remove( expression );
// Removes the CodeExpression at index 0.
collection.RemoveAt(0);
' Creates an empty CodeExpressionCollection.
Dim collection As New CodeExpressionCollection()
' Adds a CodeExpression to the collection.
collection.Add(New CodePrimitiveExpression(True))
' Adds an array of CodeExpression objects to the collection.
Dim expressions As CodeExpression() = {New CodePrimitiveExpression(True), New CodePrimitiveExpression(True)}
collection.AddRange(expressions)
' Adds a collection of CodeExpression objects to the collection.
Dim expressionsCollection As New CodeExpressionCollection()
expressionsCollection.Add(New CodePrimitiveExpression(True))
expressionsCollection.Add(New CodePrimitiveExpression(True))
collection.AddRange(expressionsCollection)
' Tests for the presence of a CodeExpression in the
' collection, and retrieves its index if it is found.
Dim testComment = New CodePrimitiveExpression(True)
Dim itemIndex As Integer = -1
If collection.Contains(testComment) Then
itemIndex = collection.IndexOf(testComment)
End If
' Copies the contents of the collection beginning at index 0 to the specified CodeExpression array.
' 'expressions' is a CodeExpression array.
collection.CopyTo(expressions, 0)
' Retrieves the count of the items in the collection.
Dim collectionCount As Integer = collection.Count
' Inserts a CodeExpression at index 0 of the collection.
collection.Insert(0, New CodePrimitiveExpression(True))
' Removes the specified CodeExpression from the collection.
Dim expression = New CodePrimitiveExpression(True)
collection.Remove(expression)
' Removes the CodeExpression at index 0.
collection.RemoveAt(0)
설명
CodeDOM(코드 문서 개체 모델) 식 개체 집합을 나타낼 수 있는 간단한 컬렉션 개체를 제공합니다.
클래스는 CodeExpressionCollection 개체 집합 CodeExpression 을 저장하는 데 사용할 수 있는 간단한 컬렉션 개체를 제공합니다.
생성자
| Name | Description |
|---|---|
| CodeExpressionCollection() |
CodeExpressionCollection 클래스의 새 인스턴스를 초기화합니다. |
| CodeExpressionCollection(CodeExpression[]) |
지정된 개체 배열 CodeExpression 을 CodeExpressionCollection 포함하는 클래스의 새 인스턴스를 초기화합니다. |
| CodeExpressionCollection(CodeExpressionCollection) |
지정된 소스 컬렉션의 CodeExpressionCollection 요소를 포함하는 클래스의 새 인스턴스를 초기화합니다. |
속성
| Name | Description |
|---|---|
| Capacity |
포함할 수 있는 CollectionBase 요소의 수를 가져오거나 설정합니다. (다음에서 상속됨 CollectionBase) |
| Count |
인스턴스에 포함된 CollectionBase 요소 수를 가져옵니다. 이 속성은 재정의할 수 없습니다. (다음에서 상속됨 CollectionBase) |
| InnerList |
인스턴스의 ArrayList 요소 CollectionBase 목록을 포함하는 항목을 가져옵니다. (다음에서 상속됨 CollectionBase) |
| Item[Int32] |
컬렉션의 CodeExpression 지정된 인덱스에서 개체를 가져오거나 설정합니다. |
| List |
인스턴스의 IList 요소 CollectionBase 목록을 포함하는 항목을 가져옵니다. (다음에서 상속됨 CollectionBase) |
메서드
| Name | Description |
|---|---|
| Add(CodeExpression) |
컬렉션에 지정된 CodeExpression 개체를 추가합니다. |
| AddRange(CodeExpression[]) |
지정된 배열의 요소를 컬렉션의 끝에 복사합니다. |
| AddRange(CodeExpressionCollection) |
다른 CodeExpressionCollection 개체의 내용을 컬렉션의 끝에 복사합니다. |
| Clear() |
인스턴스에서 모든 개체를 CollectionBase 제거합니다. 이 메서드는 재정의할 수 없습니다. (다음에서 상속됨 CollectionBase) |
| Contains(CodeExpression) |
컬렉션에 지정된 CodeExpression 개체가 포함되어 있는지 여부를 나타내는 값을 가져옵니다. |
| CopyTo(CodeExpression[], Int32) |
컬렉션 개체를 지정된 인덱스에서 시작하는 1차원 Array 인스턴스에 복사합니다. |
| Equals(Object) |
지정한 개체와 현재 개체가 같은지 여부를 확인합니다. (다음에서 상속됨 Object) |
| GetEnumerator() |
인스턴스를 반복하는 열거자를 반환합니다 CollectionBase . (다음에서 상속됨 CollectionBase) |
| GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
| GetType() |
현재 인스턴스의 Type 가져옵니다. (다음에서 상속됨 Object) |
| IndexOf(CodeExpression) |
컬렉션에 있는 경우 컬렉션에 지정된 CodeExpression 개체의 인덱스를 가져옵니다. |
| Insert(Int32, CodeExpression) |
지정된 CodeExpression 인덱스의 컬렉션에 지정된 개체를 삽입합니다. |
| MemberwiseClone() |
현재 Object단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
| OnClear() |
인스턴스의 CollectionBase 내용을 지울 때 추가 사용자 지정 프로세스를 수행합니다. (다음에서 상속됨 CollectionBase) |
| OnClearComplete() |
인스턴스의 CollectionBase 내용을 지워서 추가 사용자 지정 프로세스를 수행합니다. (다음에서 상속됨 CollectionBase) |
| OnInsert(Int32, Object) |
인스턴스에 새 요소를 CollectionBase 삽입하기 전에 추가 사용자 지정 프로세스를 수행합니다. (다음에서 상속됨 CollectionBase) |
| OnInsertComplete(Int32, Object) |
인스턴스에 새 요소를 CollectionBase 삽입한 후 추가 사용자 지정 프로세스를 수행합니다. (다음에서 상속됨 CollectionBase) |
| OnRemove(Int32, Object) |
인스턴스에서 CollectionBase 요소를 제거할 때 추가 사용자 지정 프로세스를 수행합니다. (다음에서 상속됨 CollectionBase) |
| OnRemoveComplete(Int32, Object) |
인스턴스에서 CollectionBase 요소를 제거한 후 추가 사용자 지정 프로세스를 수행합니다. (다음에서 상속됨 CollectionBase) |
| OnSet(Int32, Object, Object) |
인스턴스에서 CollectionBase 값을 설정하기 전에 추가 사용자 지정 프로세스를 수행합니다. (다음에서 상속됨 CollectionBase) |
| OnSetComplete(Int32, Object, Object) |
인스턴스에서 CollectionBase 값을 설정한 후 추가 사용자 지정 프로세스를 수행합니다. (다음에서 상속됨 CollectionBase) |
| OnValidate(Object) |
값의 유효성을 검사할 때 추가 사용자 지정 프로세스를 수행합니다. (다음에서 상속됨 CollectionBase) |
| Remove(CodeExpression) |
컬렉션에서 지정된 CodeExpression 개체를 제거합니다. |
| RemoveAt(Int32) |
인스턴스의 지정된 인덱스에 있는 요소를 제거합니다 CollectionBase . 이 메서드는 재정의할 수 없습니다. (다음에서 상속됨 CollectionBase) |
| ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
명시적 인터페이스 구현
확장명 메서드
| Name | Description |
|---|---|
| AsParallel(IEnumerable) |
쿼리의 병렬 처리를 사용하도록 설정합니다. |
| AsQueryable(IEnumerable) |
IEnumerable IQueryable변환합니다. |
| Cast<TResult>(IEnumerable) |
IEnumerable 요소를 지정된 형식으로 캐스팅합니다. |
| OfType<TResult>(IEnumerable) |
지정된 형식에 따라 IEnumerable 요소를 필터링합니다. |