Exemple #1
0
        /// <summary>
        /// Compares two instances of this object.
        /// </summary>
        /// <param name="AuthInfoStatus1">A AuthInfoStatus.</param>
        /// <param name="AuthInfoStatus2">Another AuthInfoStatus.</param>
        /// <returns>true|false</returns>
        public static Boolean operator >(AuthInfoStatus AuthInfoStatus1, AuthInfoStatus AuthInfoStatus2)
        {
            if ((Object)AuthInfoStatus1 == null)
            {
                throw new ArgumentNullException("The given AuthInfoStatus1 must not be null!");
            }

            return(AuthInfoStatus1.CompareTo(AuthInfoStatus2) > 0);
        }