Qyoto.QTextLength.Equals C# (CSharp) Method

Equals() public method

public Equals ( object o ) : bool
o object
return bool
        public override bool Equals(object o)
        {
            if (!(o is QTextLength)) { return false; }
            return this == (QTextLength) o;
        }