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

CompareTo() public method

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