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