Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

LinkedList<T> Constructor (SerializationInfo^, StreamingContext)

 

Initializes a new instance of the LinkedList<T> class that is serializable with the specified SerializationInfo and StreamingContext.

Namespace:   System.Collections.Generic
Assembly:  System (in System.dll)

protected:
LinkedList(
	SerializationInfo^ info,
	StreamingContext context
)

Parameters

info
Type: System.Runtime.Serialization::SerializationInfo^

A System.Runtime.Serialization::SerializationInfo object containing the information required to serialize the LinkedList<T>.

context
Type: System.Runtime.Serialization::StreamingContext

A System.Runtime.Serialization::StreamingContext object containing the source and destination of the serialized stream associated with the LinkedList<T>.

LinkedList<T> accepts null as a valid Value for reference types and allows duplicate values.

If the LinkedList<T> is empty, the First and Last properties contain null.

This constructor is an O(n) operation.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft