C# 클래스 NAnt.Core.DirScannerStringCollection

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

공개 메소드들

메소드 설명
Clone ( ) : object

Creates a shallow copy of the DirScannerStringCollection.

Contains ( string value ) : bool

Determines whether the specified string is in the DirScannerStringCollection.

String comparisons within the DirScannerStringCollection are only case-sensitive if CaseSensitive is

DirScannerStringCollection ( bool caseSensitive ) : System

Initialize a new instance of the DirScannerStringCollection class specifying whether or not string comparison should be case-sensitive.

IndexOf ( string value ) : int

Searches for the specified string and returns the zero-based index of the first occurrence within the DirScannerStringCollection.

String comparisons within the DirScannerStringCollection are only case-sensitive if CaseSensitive is .

메소드 상세

Clone() 공개 메소드

Creates a shallow copy of the DirScannerStringCollection.
public Clone ( ) : object
리턴 object

Contains() 공개 메소드

Determines whether the specified string is in the DirScannerStringCollection.
String comparisons within the DirScannerStringCollection are only case-sensitive if CaseSensitive is
public Contains ( string value ) : bool
value string The string to locate in the . The value can be .
리턴 bool

DirScannerStringCollection() 공개 메소드

Initialize a new instance of the DirScannerStringCollection class specifying whether or not string comparison should be case-sensitive.
public DirScannerStringCollection ( bool caseSensitive ) : System
caseSensitive bool Specifies whether or not string comparison should be case-sensitive.
리턴 System

IndexOf() 공개 메소드

Searches for the specified string and returns the zero-based index of the first occurrence within the DirScannerStringCollection.
String comparisons within the DirScannerStringCollection are only case-sensitive if CaseSensitive is .
public IndexOf ( string value ) : int
value string The string to locate. The value can be .
리턴 int