System.Drawing.PointF.GetHashCode C# (CSharp) Method

GetHashCode() public method

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

Usage Example

Ejemplo n.º 1
0
		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