Table of Contents

Interface IGenerator<TOut>

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

Type Parameters

TOut
The type of the generated objects.

Methods

Generate(object, ref CultureInfo)

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

Parameters

e object
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.