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

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

public static op_NotMatch ( string input, string pattern ) : bool
input string
pattern string
Результат bool
        public static bool op_NotMatch(string input, string pattern)
        {
            return !op_Match(input, pattern);
        }

Same methods

RuntimeServices::op_NotMatch ( string input, System pattern ) : bool
RuntimeServices