System.Windows.Forms.Cursor.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
		public static bool operator != (Cursor left, Cursor right) {
			if ((object)left == (object)right)
				return false;

			if ((object)left == null || (object)right == null) 
				return true;

			if (left.handle == right.handle) 
				return false;
			return true;
		}