Table of Contents

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

T

The 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

value object

The value to create the instance from.

Returns

T

The created instance.