Class Dictionary
Functions for working with dictionaries.
Inheritance
System.Object
Dictionary
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Virtlink.Utilib.Collections
Assembly: Virtlink.Utilib.dll
Syntax
public static class Dictionary
Methods
| Improve this Doc View SourceEmpty<TKey, TValue>()
Returns a read-only empty dictionary.
Declaration
public static IReadOnlyDictionary<TKey, TValue> Empty<TKey, TValue>()
Returns
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyDictionary<TKey, TValue> | The read-only empty dictionary. |
Type Parameters
Name | Description |
---|---|
TKey | The type of keys in the dictionary. |
TValue | The type of values in the dictionary. |