Java.Util.LinkedList Class
LinkedList is an implementation of Java.Util.IList, backed by a doubly-linked list.

See Also: LinkedList Members

Syntax

[Android.Runtime.Register("java/util/LinkedList", DoNotGenerateAcw=true)]
public class LinkedList : AbstractSequentialList, Java.IO.ISerializable, Java.Lang.ICloneable, IDeque, IDisposable

Remarks

LinkedList is an implementation of Java.Util.IList, backed by a doubly-linked list. All optional operations including adding, removing, and replacing elements are supported.

All elements are permitted, including null.

This class is primarily useful if you need queue-like behavior. It may also be useful as a list if you expect your lists to contain zero or one element, but still require the ability to scale to slightly larger numbers of elements. In general, though, you should probably use Android.Runtime.JavaList if you don't need the queue-like behavior.

[Android Documentation]

Requirements

Namespace: Java.Util
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1