Interface IAssignable<TKey, TValue>
A command-based interface that accepts a key and value, usually to pair the two with a store of some sort.
Namespace: ExtendedXmlSerializer.Core.Sources
Assembly: ExtendedXmlSerializer.dll
Syntax
public interface IAssignable<in TKey, in TValue>
  Type Parameters
| 
        TKey
         The key type.  | 
    
| 
        TValue
         The value type.  | 
    
Methods
Assign(TKey, TValue)
Assigns a value with the associated key.
Declaration
void Assign(TKey key, TValue value)
  Parameters
| 
        TKey
        key
         The key.  | 
    
| 
        TValue
        value
         The value.  |