BExplorer.Shell.Interop.NativePoint.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

Gets a hash code for the NativePoint.
public GetHashCode ( ) : int
Результат int
		public override int GetHashCode() {
			int hash = X.GetHashCode();
			hash = hash * 31 + Y.GetHashCode();
			return hash;
		}
	}