예제 #1
0
        /// <summary>
        /// Compares a Dynamics365Field to another instance.
        /// </summary>
        /// <param name="other">The other Dynamics365Field.</param>
        /// <returns>An integer that indicates whether the instance is less than, equal to or greater than another instance.</returns>
        public int CompareTo(Dynamics365Field other)
        {
            if (other == null)
            {
                return(1);
            }

            return(LogicalName.CompareTo(other.LogicalName));
        }
예제 #2
0
 public int CompareTo(Dynamics365Entity other)
 {
     if (other == null)
     {
         return(1);
     }
     else
     {
         return(LogicalName.CompareTo(other.LogicalName));
     }
 }
 public int CompareTo(Object obj)
 {
     return(LogicalName.CompareTo(obj));
 }