C# 클래스 Evaluator.TypeResults

Wraps the results of a programmatically-accessed compilation of a Type with the warnings generated by the compiler.
파일 보기 프로젝트 열기: swax/SwarmNLP 1 사용 예제들

공개 메소드들

메소드 설명
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