Interface IIso<T1, T2>
- Namespace
- Executables
- Assembly
- executables.dll
Represents a reversible transformation between two types.
public interface IIso<T1, T2>
Type Parameters
T1Source type of the forward transformation.
T2Source type of the backward transformation.
Methods
Backward(T2)
Converts a value from T2 back to T1.
T1 Backward(T2 input)
Parameters
inputT2Source value.
Returns
- T1
Converted value.
Forward(T1)
Converts a value from T1 to T2.
T2 Forward(T1 input)
Parameters
inputT1Source value.
Returns
- T2
Converted value.