C# 클래스 NAnt.Core.Types.PatternCollection

상속: IList
파일 보기 프로젝트 열기: skolima/NAnt 1 사용 예제들

Private Properties

프로퍼티 타입 설명
ICollection void
IEnumerable IEnumerator
IList bool
IList int
IList void
IList void
IList void
this objectIList.System

공개 메소드들

메소드 설명
Add ( Pattern item ) : int

Adds a Pattern to the end of the collection.

AddRange ( Pattern items ) : void

Adds the elements of a Pattern array to the end of the collection.

AddRange ( PatternCollection items ) : void

Adds the elements of a PatternCollection to the end of the collection.

Clear ( ) : void

Removes all items from the PatternCollection.

Contains ( Pattern item ) : bool

Determines whether a Pattern is in the collection.

CopyTo ( Pattern array, int index ) : void

Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.

GetEnumerator ( ) : PatternEnumerator

Returns an enumerator that can iterate through the collection.

IndexOf ( Pattern item ) : int

Retrieves the index of a specified Pattern object in the collection.

Insert ( int index, Pattern item ) : void

Inserts a Pattern into the collection at the specified index.

PatternCollection ( ) : System

Initializes a new instance of the PatternCollection class.

Remove ( Pattern item ) : void

Removes a member from the collection.

this ( int index ) : Pattern

Gets or sets the element at the specified index.

비공개 메소드들

메소드 설명
ICollection ( Array array, int index ) : void
IEnumerable ( ) : IEnumerator
IList ( object value ) : bool
IList ( object value ) : int
IList ( int index ) : void
IList ( int index, object value ) : void
IList ( object value ) : void
this ( int index ) : objectIList.System

메소드 상세

Add() 공개 메소드

Adds a Pattern to the end of the collection.
public Add ( Pattern item ) : int
item Pattern The to be added to the end of the collection.
리턴 int

AddRange() 공개 메소드

Adds the elements of a Pattern array to the end of the collection.
public AddRange ( Pattern items ) : void
items Pattern The array of elements to be added to the end of the collection.
리턴 void

AddRange() 공개 메소드

Adds the elements of a PatternCollection to the end of the collection.
public AddRange ( PatternCollection items ) : void
items PatternCollection The to be added to the end of the collection.
리턴 void

Clear() 공개 메소드

Removes all items from the PatternCollection.
public Clear ( ) : void
리턴 void

Contains() 공개 메소드

Determines whether a Pattern is in the collection.
public Contains ( Pattern item ) : bool
item Pattern The to locate in the collection.
리턴 bool

CopyTo() 공개 메소드

Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
public CopyTo ( Pattern array, int index ) : void
array Pattern The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.
index int The zero-based index in at which copying begins.
리턴 void

GetEnumerator() 공개 메소드

Returns an enumerator that can iterate through the collection.
public GetEnumerator ( ) : PatternEnumerator
리턴 PatternEnumerator

IndexOf() 공개 메소드

Retrieves the index of a specified Pattern object in the collection.
public IndexOf ( Pattern item ) : int
item Pattern The object for which the index is returned.
리턴 int

Insert() 공개 메소드

Inserts a Pattern into the collection at the specified index.
public Insert ( int index, Pattern item ) : void
index int The zero-based index at which should be inserted.
item Pattern The to insert.
리턴 void

PatternCollection() 공개 메소드

Initializes a new instance of the PatternCollection class.
public PatternCollection ( ) : System
리턴 System

Remove() 공개 메소드

Removes a member from the collection.
public Remove ( Pattern item ) : void
item Pattern The to remove from the collection.
리턴 void

this() 공개 메소드

Gets or sets the element at the specified index.
public this ( int index ) : Pattern
index int The zero-based index of the element to get or set.
리턴 Pattern