C# Class Evaluator.TypeResults

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

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
TypeResults ( Type typeReference, AssemblyResults compiledAssembly ) : System

Initializes a new instance of the TypeResults class.

Method Details

GetMethod() public méthode

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

Instantiate() public méthode

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

TypeResults() protected méthode

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. ///
Résultat System