[]
Represents a coder with encode and decode functions for a specific type.
public Coder(Func<T, string> Encode, Func<string, T> Decode)
Type | Name | Description |
---|---|---|
Func<T, string> | Encode | Function to encode a value of type |
Func<string, T> | Decode | Function to decode a string to a value of type |
protected Coder(Coders.Coder<T> original)
Type | Name | Description |
---|---|---|
Coders.Coder<T> | original |