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