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

CompareTo() 공개 메소드

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

Same methods

CreatureResource::CompareTo ( CreatureResource other ) : int