RCLinkedList class is a reduced collection class. This class is designed to reduce the number of collections that happen by keeping a pool of RCLinkedListNode's available. By setting the capacity a pool of nodes will be created.

Namespace: RCLibrary
Assembly: RCLibrary (in RCLibrary.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public class RCLinkedList<T>
Visual Basic
Public Class RCLinkedList(Of T)
Visual C++
generic<typename T>
public ref class RCLinkedList

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:RCLibrary.RCLinkedList`1"]

Inheritance Hierarchy

System..::..Object
  RCLibrary..::..RCLinkedList<(Of <(<'T>)>)>

See Also