Svg.SvgUnit.Equals C# (CSharp) Method

Equals() public method

public Equals ( SvgUnit other ) : bool
other SvgUnit
return bool
        public bool Equals(SvgUnit other)
        {
            return this._type == other._type && (this._value == other._value);
        }

Same methods

SvgUnit::Equals ( object obj ) : bool