Table of Contents

Interface IIso<T1, T2>

Namespace
Executables
Assembly
executables.dll

Represents a reversible transformation between two types.

public interface IIso<T1, T2>

Type Parameters

T1

Source type of the forward transformation.

T2

Source type of the backward transformation.

Methods

Backward(T2)

Converts a value from T2 back to T1.

T1 Backward(T2 input)

Parameters

input T2

Source value.

Returns

T1

Converted value.

Forward(T1)

Converts a value from T1 to T2.

T2 Forward(T1 input)

Parameters

input T1

Source value.

Returns

T2

Converted value.