Java.Util.LinkedHashSet Class
LinkedHashSet is a variant of HashSet.

See Also: LinkedHashSet Members

Syntax

[Android.Runtime.Register("java/util/LinkedHashSet", DoNotGenerateAcw=true)]
public class LinkedHashSet : HashSet, IDisposable

Remarks

LinkedHashSet is a variant of HashSet. Its entries are kept in a doubly-linked list. The iteration order is the order in which entries were inserted.

Null elements are allowed, and all the optional Set operations are supported.

Like HashSet, LinkedHashSet is not thread safe, so access by multiple threads must be synchronized by an external mechanism such as Collections.synchronizedSet(java.util.Set<E>).

[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