Interface IBuilder<T>
Represents a builder that builds another object. May hold a set of properties used when constructing the target object.
public interface IBuilder<out T> : IBuilder, IPropertiesHolder, INamedComponent
Type Parameters
T- The type of the target object.
- Inherited Members
Methods
Build(ref CultureInfo?)
Builds the object.
T Build(ref CultureInfo? culture)
Parameters
cultureCultureInfo- The preferred culture of the object. When the method returns, set to the actual culture of the object.
Returns
- T
- The built object.