AdvancedLauncher.SDK.Tools.Thickness.Equals C# (CSharp) Method

Equals() public method

Determines whether this instance and another specified Thickness are the same
public Equals ( object obj ) : bool
obj object The object to compare to this instance
return bool
        public override bool Equals(object obj)
        {
            if (obj is Thickness) {
                Thickness otherObj = (Thickness)obj;
                return (this == otherObj);
            }
            return (false);
        }

Same methods

Thickness::Equals ( Thickness thickness ) : bool