System::Collections::Generic::LinkedListNode class

LinkedListNode class

Node of linked list. Implements a wrapper over an iterator of std::list that is wrapped in linked list. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

template<typename T>class LinkedListNode : public System::Object
ParameterDescription
TStored value type.

Methods

MethodDescription
get_List() constGets containing list.
get_Next() constGets next node.
get_Previous() constGets previous node.
get_Value() constGets stored value.
LinkedListNode(const T&)Constructor.
set_Value(const T&)Sets stored value.

See Also