ALFA.Shared.ItemResource.CompareTo C# (CSharp) Method

CompareTo() public method

public CompareTo ( IListBoxItem other ) : int
other IListBoxItem
return 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