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

GetHashCode() public method

Returns the hash code for this Thickness
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return Left.GetHashCode() ^ Top.GetHashCode() ^ Right.GetHashCode() ^ Bottom.GetHashCode();
        }