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

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

public static op_Member ( char lhs, string rhs ) : bool
lhs char
rhs string
Результат bool
        public static bool op_Member(char lhs, string rhs)
        {
            if (rhs == null) return false;
            return rhs.IndexOf(lhs) > -1;
        }

Same methods

RuntimeServices::op_Member ( object lhs, IDictionary rhs ) : bool
RuntimeServices::op_Member ( object lhs, IEnumerable rhs ) : bool
RuntimeServices::op_Member ( object lhs, IList rhs ) : bool
RuntimeServices::op_Member ( string lhs, string rhs ) : bool
RuntimeServices