OpenTK.DisplayResolution.GetHashCode C# (CSharp) Method

GetHashCode() public method

Returns a unique hash representing this resolution.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return Bounds.GetHashCode() ^ bits_per_pixel ^ refresh_rate.GetHashCode();
        }