Hpdi.Vss2Git.PathMatcher.PathMatcher C# (CSharp) Метод

PathMatcher() публичный Метод

public PathMatcher ( string pattern ) : System.Text
pattern string
Результат System.Text
        public PathMatcher(string pattern)
        {
            regex = new Regex(ConvertPattern(pattern),
                RegexOptions.IgnoreCase | RegexOptions.Singleline);
        }