.NET Framework Class Library
ConcurrentLinkedList<(Of <(T>)>) Class

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Represents a thread-safe, doubly-linked list.

Namespace:  System.Collections.Concurrent
Assembly:  System (in System.dll)
Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
<ComVisibleAttribute(False)> _
Public Class ConcurrentLinkedList(Of T) _
    Implements IProducerConsumerCollection(Of T), ICollection, ICollection(Of T),  _
    IEnumerable(Of T), IEnumerable, ISerializable, IDeserializationCallback
Visual Basic (Usage)
Dim instance As ConcurrentLinkedList(Of T)
C#
[SerializableAttribute]
[ComVisibleAttribute(false)]
public class ConcurrentLinkedList<T> : IProducerConsumerCollection<T>, 
    ICollection, ICollection<T>, IEnumerable<T>, IEnumerable, ISerializable, 
    IDeserializationCallback
Visual C++
[SerializableAttribute]
[ComVisibleAttribute(false)]
generic<typename T>
public ref class ConcurrentLinkedList : IProducerConsumerCollection<T>, 
    ICollection, ICollection<T>, IEnumerable<T>, IEnumerable, ISerializable, 
    IDeserializationCallback
JScript
JScript does not support generic types or methods.
F#
[<SerializableAttribute>]
[<ComVisibleAttribute(false)>]
type ConcurrentLinkedList<'T> =  
    class
        interface IProducerConsumerCollection<'T>
        interface ICollection
        interface ICollection<'T>
        interface IEnumerable<'T>
        interface IEnumerable
        interface ISerializable
        interface IDeserializationCallback
    end

Type Parameters

T

The type of element to store in the list.

Remarks

NoteNote

ConcurrentLinkedList(of T) is planned to be removed prior to the final release of Visual Studio 2010. Please do not use this class.

Inheritance Hierarchy

System..::.Object
  System.Collections.Concurrent..::.ConcurrentLinkedList<(Of <(T>)>)
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 4
See Also

Reference

Page view tracker