Interface ITypeBuilder<T>
Define una serie de miembros a implementar por un descriptor de TypeBuilder que incluye información fuertemente tipeada del tipo base a heredar.
Namespace: TheXDS.MCART.Types
Assembly: MCART.TypeFactory.dll
Syntax
public interface ITypeBuilder<out T>
Type Parameters
Name | Description |
---|---|
T | Tipo base a heredar por el TypeBuilder. |
Properties
| Edit this page View SourceActualBaseType
Referencia al tipo base real del TypeBuilder.
Declaration
Type ActualBaseType { get; }
Property Value
Type | Description |
---|---|
Type |
Builder
TypeBuilder subyacente a utilizar para la creación del nuevo tipo.
Declaration
TypeBuilder Builder { get; }
Property Value
Type | Description |
---|---|
TypeBuilder |
SpecificBaseType
Referencia al tipo base fuertemente tipeado específico del TypeBuilder.
Declaration
Type SpecificBaseType { get; }
Property Value
Type | Description |
---|---|
Type |
Methods
| Edit this page View SourceNew()
Inicializa una nueva instancia del tipo en runtime especificado.
Declaration
T New()
Returns
Type | Description |
---|---|
T | La nueva instancia del tipo especificado. |