Namespace GuildWars2.Collections
Classes
- ValueDictionary<TKey, TValue>
Represents a dictionary collection with value semantics, meaning two ValueDictionary<TKey, TValue> instances are considered equal if their contents are equal. Value equality is determined by the keys and values in the dictionary, not by reference.
- ValueHashSet<T>
Represents a set collection with value semantics, meaning two ValueHashSet<T> instances are considered equal if their contents are equal. Value equality is determined by the set of items in the collection, not by reference.
- ValueList<T>
Represents a list collection with value semantics, meaning two ValueList<T> instances are considered equal if their contents are equal. Value equality is determined by the sequence and values of the items in the collection, not by reference.