Table of Contents

Interface IGenerator<TIn, TOut>

Namespace
Cryville.EEW
Assembly
Cryville.EEW.dll
Represents a generator that generates objects of a specific type from input objects of another specific type.
public interface IGenerator<in TIn, out TOut> : IGenerator<TOut>

Type Parameters

TIn
The type of the input objects.
TOut
The type of the generated objects.
Inherited Members

Methods

Generate(TIn, ref CultureInfo)

Generates the object.
TOut Generate(TIn e, ref CultureInfo culture)

Parameters

e TIn
The input object.
culture CultureInfo
The preferred culture of the generated object. When the method returns, set to the actual culture of the generated object.

Returns

TOut
The generated object.