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

GetHashCode() 공개 메소드

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

Usage Example

예제 #1
0
파일: TestPointF.cs 프로젝트: nlhepler/mono
		public void GetHashCodeTest ()
		{
			PointF pt = new PointF (1.1F, 9.9F);
			Assert.AreEqual (pt.GetHashCode (), pt11_99.GetHashCode (), "GHC#1");
		}
All Usage Examples Of System.Drawing.PointF::GetHashCode