Mono.Cxxi.CppModifiers.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
		public static bool operator == (CppModifiers a, CppModifiers b)
		{
			if ((object)a == (object)b)
				return true;

			if ((object)a == null || (object)b == null)
				return false;

			return a.GetHashCode () == b.GetHashCode ();
		}
		public static bool operator != (CppModifiers a, CppModifiers b)