Mono.Cxxi.CppModifiers.operator C# (CSharp) Méthode

operator() public static méthode

public static operator ( ) : bool
Résultat 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)