Struct KeyWithId<TKey>
A generic structure that implements the IKeyWithId interface for keys that are not deleted.
public struct KeyWithId<TKey> : IKeyWithId
Type Parameters
TKey
The type of the key.
- Implements
- Inherited Members
Constructors
KeyWithId(ItemId, TKey)
Initializes a new instance of the KeyWithId<TKey> structure.
public KeyWithId(ItemId id, TKey key)
Parameters
Fields
Id
The ItemId associated to the key.
public readonly ItemId Id
Field Value
Key
The key of the dictionary.
public readonly TKey Key
Field Value
- TKey