C# 클래스 Evaluator.AssemblyResults

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

공개 메소드들

메소드 설명
GetType ( string typeName, bool throwOnError ) : TypeResults

Gets the Type object that represents the specified type from the compiled assembly. Assembly.GetType

보호된 메소드들

메소드 설명
AssemblyResults ( CompilerResults fullResults ) : System

Initializes a new instance of the AssemblyResults class.

AssemblyResults ( CompilerResults fullResults, string resultSource ) : System

Initializes a new instance of the AssemblyResults class.

메소드 상세

AssemblyResults() 보호된 메소드

Initializes a new instance of the AssemblyResults class.
protected AssemblyResults ( CompilerResults fullResults ) : System
fullResults System.CodeDom.Compiler.CompilerResults /// The results of the programmatically-accessed compilation. ///
리턴 System

AssemblyResults() 보호된 메소드

Initializes a new instance of the AssemblyResults class.
protected AssemblyResults ( CompilerResults fullResults, string resultSource ) : System
fullResults System.CodeDom.Compiler.CompilerResults /// The results of the programmatically-accessed compilation. ///
resultSource string /// The source that the compiler attempted to compile. ///
리턴 System

GetType() 공개 메소드

Gets the Type object that represents the specified type from the compiled assembly. Assembly.GetType
public GetType ( string typeName, bool throwOnError ) : TypeResults
typeName string /// The full name of the type. ///
throwOnError bool /// true to throw an exception if the type is not found; otherwise, a null reference (Nothing in Visual Basic) is returned. ///
리턴 TypeResults