Interface IGenerator<TOut>
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
eobject- The input object.
cultureCultureInfo- 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.