C# 클래스 NAnt.DotNet.Types.NamespaceImportCollection

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

공개 메소드들

메소드 설명
AddRange ( NamespaceImportCollection items ) : void

Adds the items of a NamespaceImportCollection to the end of the collection.

Contains ( NamespaceImport value ) : bool

Determines whether a NamespaceImport is in the collection.

GetEnumerator ( ) : NamespaceImportEnumerator

Returns an enumerator that can iterate through the collection.

IndexOf ( NamespaceImport value ) : int

Gets the location of a NamespaceImport in the collection.

If the NamespaceImport is not currently a member of the collection, -1 is returned.

Insert ( int index, NamespaceImport value ) : void

Inserts a NamespaceImport into the collection at the specified index.

Remove ( NamespaceImport value ) : void

Removes the specified NamespaceImport from the collection.

ToString ( ) : string

Returns a comma-delimited list of namespace imports.

Each namespace import is quoted individually.

비공개 메소드들

메소드 설명
Add ( NamespaceImport value ) : int
IList ( object value ) : bool

Determines whether a NamespaceImport is in the collection.

IList ( object value ) : int

Adds a NamespaceImport to the end of the collection.

IList ( int index, object value ) : void

Inserts a NamespaceImport into the collection at the specified index.

IList ( object value ) : void

Removes the specified NamespaceImport from the collection.

this ( int index ) : NamespaceImport
this ( string value ) : NamespaceImport
this ( int index ) : objectIList.System

Gets or sets the item at the specified index.

메소드 상세

AddRange() 공개 메소드

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

Contains() 공개 메소드

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

GetEnumerator() 공개 메소드

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

IndexOf() 공개 메소드

Gets the location of a NamespaceImport in the collection.
If the NamespaceImport is not currently a member of the collection, -1 is returned.
public IndexOf ( NamespaceImport value ) : int
value NamespaceImport The object to locate.
리턴 int

Insert() 공개 메소드

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

Remove() 공개 메소드

Removes the specified NamespaceImport from the collection.
public Remove ( NamespaceImport value ) : void
value NamespaceImport The to remove from the collection.
리턴 void

ToString() 공개 메소드

Returns a comma-delimited list of namespace imports.
Each namespace import is quoted individually.
public ToString ( ) : string
리턴 string