MonoMac.Security.SecProtocol.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

public static operator ( ) : bool
리턴 bool
        public static bool operator !=(SecProtocol a, SecProtocol b)
        {
            if (a == null)
                return b != null;
            else if (b == null)
                return true;
            return a.Handle != b.Handle;
        }