C# Class Evaluator.TypeResults

Wraps the results of a programmatically-accessed compilation of a Type with the warnings generated by the compiler.
Datei anzeigen Open project: swax/SwarmNLP Class Usage Examples

Public Methods

Method Description
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.

Protected Methods

Method Description
TypeResults ( Type typeReference, AssemblyResults compiledAssembly ) : System

Initializes a new instance of the TypeResults class.

Method Details

GetMethod() public method

Gets a specific method of the current Type.
public GetMethod ( string name ) : MethodResults
name string /// The name of the public method to get. ///
return MethodResults

Instantiate() public method

Creates an instance of the Type represented by the current TypeResults object.
public Instantiate ( ) : object
return object

TypeResults() protected method

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. ///
return System