MonoMac.Security.SecAuthenticationType.operator C# (CSharp) Метод

operator() публичный статический Метод

public static operator ( ) : bool
Результат bool
        public static bool operator !=(SecAuthenticationType a, SecAuthenticationType b)
        {
            if (a == null)
                return b != null;
            else if (b == null)
                return true;
            return a.Handle != b.Handle;
        }