C# Class Gammtek.Conduit.Text.StringMatching.DefaultStringMatcher

Default string matcher which ignores pattern and treats all input strings as matched.
Inheritance: IStringMatcher
Show file Open project: ME3Explorer/ME3Explorer

Public Methods

Method Description
IsMatch ( string value ) : bool

Returns true indicating that all input strings are considered matched.

Method Details

IsMatch() public method

Returns true indicating that all input strings are considered matched.
public IsMatch ( string value ) : bool
value string /// Value which should be matched against the pattern. /// Ignored because this class treats all input strings as successfully matched. ///
return bool