MonoMac.ObjCRuntime.Selector.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
		public static bool operator!= (Selector left, Selector right) {
			if (((object)left) == null)
				return (((object)right) != null);
			if (((object)right) == null)
				return true;

			return !sel_isEqual (left.handle, right.handle);
		}