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

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

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

Same methods

ItemResource::CompareTo ( ItemResource other ) : int