[]
        
(Showing Draft Content)

C1.C1Preview.Util.FastList

FastList Class

Represents an IList providing a fast search for the contained elements.

Namespace: C1.C1Preview.Util
Assembly: C1.PrintDocument.8.dll
Syntax
public class FastList : IList, ICollection, IEnumerable

Constructors

Name Description
FastList()

Properties

Name Description
InnerList

Gets the List<T> used internally to store the elements of the current FastList.

Methods

Name Description
Add(IComparable)

Adds an object implementing the IComparable interface to the current list.

Clear()

Clears the current FastList.

FindObjectIndex(object, out int)

Performs a fast search for the specified object within the current FastList.

IndexOf(object)

Returns the index of the specified object in the current FastList. (Performs a fast search using the FindObjectIndex(object, out int) method.)

Insert(int, object)

Inserts the element at the specified index.

Remove(object)

Removes the specified element from the current list.

RemoveAt(int)

Removes the element at the specified index from the current list.