System.Drawing.Size.GetHashCode C# (CSharp) 메소드

GetHashCode() 공개 메소드

Returns a hash code.

public GetHashCode ( ) : int
리턴 int
        public override int GetHashCode() => HashHelpers.Combine(Width, Height);

Usage Example

예제 #1
0
 public override int GetHashCode()
 {
     return(_Size.GetHashCode() ^ _ColorDepth.GetHashCode());
 }