Sharpex2D.Rendering.Color.GetHashCode C# (CSharp) Méthode

GetHashCode() public méthode

Gets the HashCode for the current Color.
public GetHashCode ( ) : int
Résultat int
        public override int GetHashCode()
        {
            return (R + B + G + A).GetHashCode();
        }