ALFA.Shared.TrapResource.CompareTo C# (CSharp) 메소드

CompareTo() 공개 메소드

public CompareTo ( IListBoxItem other ) : int
other IListBoxItem
리턴 int
        public int CompareTo(IListBoxItem other)
        {
            TrapResource trap = other as TrapResource;
            if (trap != null) return CompareTo(trap);
            return 0;
        }

Same methods

TrapResource::CompareTo ( TrapResource other ) : int