ALFA.Shared.ActiveArea.CompareTo C# (CSharp) Метод

CompareTo() публичный Метод

public CompareTo ( object other ) : int
other object
Результат int
        public int CompareTo(object other)
        {
            ActiveArea otherArea = other as ActiveArea;
            if (otherArea != null)
            {
                return CompareTo(otherArea);
            }
            return 0;
        }
        public int CompareTo(ActiveArea other)

Same methods

ActiveArea::CompareTo ( ActiveArea other ) : int