Boo.Lang.Runtime.RuntimeServices.op_Match C# (CSharp) Метод

op_Match() публичный статический Метод

public static op_Match ( string input, System pattern ) : bool
input string
pattern System
Результат bool
        public static bool op_Match(string input, System.Text.RegularExpressions.Regex pattern)
        {
            return pattern.IsMatch(input);
        }

Same methods

RuntimeServices::op_Match ( string input, string pattern ) : bool
RuntimeServices