C# 클래스 Gammtek.Conduit.Text.StringMatching.ExactMatcher

Implements IStringMatcher interface in such way that string matches the pattern only if it is exactly the same as the pattern.
상속: IStringMatcher
파일 보기 프로젝트 열기: ME3Explorer/ME3Explorer

공개 메소드들

메소드 설명
ExactMatcher ( )

Default constructor.

ExactMatcher ( string pattern )

Constructor which initializes search pattern.

IsMatch ( string value ) : bool

Tests whether value equals stored pattern or not.

메소드 상세

ExactMatcher() 공개 메소드

Default constructor.
public ExactMatcher ( )

ExactMatcher() 공개 메소드

Constructor which initializes search pattern.
public ExactMatcher ( string pattern )
pattern string Pattern against which input strings are matched.

IsMatch() 공개 메소드

Tests whether value equals stored pattern or not.
public IsMatch ( string value ) : bool
value string String which is compared with stored pattern. Value null is treated as empty string.
리턴 bool