Enigma.Memory.MemoryAddress.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
		public static bool operator >=(MemoryAddress m1, MemoryAddress m2)
		{
			if (IntPtr.Size == 4)
				return unchecked((uint)m1 >= (uint)m2);
			return unchecked((ulong)m1 >= (ulong)m2);
		}
		public static bool operator >(MemoryAddress m1, MemoryAddress m2)