C# Class Evaluator.MethodResults

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

Public Methods

Method Description
Invoke ( ) : object

Invokes the compiled method.

Protected Methods

Method Description
MethodResults ( MethodInfo methodReference, TypeResults compiledType ) : System

Initializes a new instance of the TypeResults class.

Method Details

Invoke() public method

Invokes the compiled method.
public Invoke ( ) : object
return object

MethodResults() protected method

Initializes a new instance of the TypeResults class.
protected MethodResults ( MethodInfo methodReference, TypeResults compiledType ) : System
methodReference System.Reflection.MethodInfo /// The reflected information on the final method produced by the compiler. ///
compiledType TypeResults /// The results of the programmatically-accessed compilation of the containing type. ///
return System