C# 클래스 Hiro.Compilers.TypeBuilder

Represents the basic implementation for a type builder class.
파일 보기 프로젝트 열기: philiplaureano/Hiro

공개 메소드들

메소드 설명
CreateType ( string typeName, string namespaceName, TypeReference baseType, AssemblyDefinition assembly ) : Mono.Cecil.TypeDefinition

Creates a class type.

보호된 메소드들

메소드 설명
AddInterfaces ( Mono.Cecil.ModuleDefinition module, Mono.Cecil.TypeDefinition containerType ) : void

Adds additional interfaces to the target type.

메소드 상세

AddInterfaces() 보호된 메소드

Adds additional interfaces to the target type.
protected AddInterfaces ( Mono.Cecil.ModuleDefinition module, Mono.Cecil.TypeDefinition containerType ) : void
module Mono.Cecil.ModuleDefinition The host module.
containerType Mono.Cecil.TypeDefinition The container type.
리턴 void

CreateType() 공개 메소드

Creates a class type.
public CreateType ( string typeName, string namespaceName, TypeReference baseType, AssemblyDefinition assembly ) : Mono.Cecil.TypeDefinition
typeName string The class name.
namespaceName string The namespace name.
baseType Mono.Cecil.TypeReference The base type
assembly Mono.Cecil.AssemblyDefinition The assembly that will contain the type
리턴 Mono.Cecil.TypeDefinition