C# Класс Evaluator.TypeResults

Wraps the results of a programmatically-accessed compilation of a Type with the warnings generated by the compiler.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetMethod ( string name ) : MethodResults

Gets a specific method of the current Type.

Instantiate ( ) : object

Creates an instance of the Type represented by the current TypeResults object.

Защищенные методы

Метод Описание
TypeResults ( Type typeReference, AssemblyResults compiledAssembly ) : System

Initializes a new instance of the TypeResults class.

Описание методов

GetMethod() публичный Метод

Gets a specific method of the current Type.
public GetMethod ( string name ) : MethodResults
name string /// The name of the public method to get. ///
Результат MethodResults

Instantiate() публичный Метод

Creates an instance of the Type represented by the current TypeResults object.
public Instantiate ( ) : object
Результат object

TypeResults() защищенный Метод

Initializes a new instance of the TypeResults class.
protected TypeResults ( Type typeReference, AssemblyResults compiledAssembly ) : System
typeReference System.Type /// The final produced by the compiler. ///
compiledAssembly AssemblyResults /// The results of the programmatically-accessed compilation of the containing assembly. ///
Результат System