Boo.Lang.Runtime.RuntimeServices.op_Member C# (CSharp) 메소드

op_Member() 공개 정적인 메소드

public static op_Member ( string lhs, string rhs ) : bool
lhs string
rhs string
리턴 bool
        public static bool op_Member(string lhs, string rhs)
        {
            if (null == lhs || null == rhs)
                return false;
            return rhs.IndexOf(lhs) > -1;
        }

Same methods

RuntimeServices::op_Member ( char lhs, string rhs ) : bool
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