Interface IInstance<T>
- Namespace
- SunamoInterfaces.Interfaces
- Assembly
- SunamoInterfaces.dll
Interface for creating instances of type T from object values.
public interface IInstance<T>
Type Parameters
TThe type of instance to create.
- Extension Methods
Methods
CreateInstance(object)
Creates an instance of type T from the specified value.
T CreateInstance(object value)
Parameters
valueobjectThe value to create the instance from.
Returns
- T
The created instance.