CodeCompiler.FromSourceBatch(CompilerParameters, String[]) 方法

定义

使用指定选项编译指定的源代码字符串,并返回编译结果。

protected:
 virtual System::CodeDom::Compiler::CompilerResults ^ FromSourceBatch(System::CodeDom::Compiler::CompilerParameters ^ options, cli::array <System::String ^> ^ sources);
protected virtual System.CodeDom.Compiler.CompilerResults FromSourceBatch (System.CodeDom.Compiler.CompilerParameters options, string[] sources);
abstract member FromSourceBatch : System.CodeDom.Compiler.CompilerParameters * string[] -> System.CodeDom.Compiler.CompilerResults
override this.FromSourceBatch : System.CodeDom.Compiler.CompilerParameters * string[] -> System.CodeDom.Compiler.CompilerResults
Protected Overridable Function FromSourceBatch (options As CompilerParameters, sources As String()) As CompilerResults

参数

options
CompilerParameters

一个指示编译器选项的 CompilerParameters 对象。

sources
String[]

包含要编译的源代码的字符串数组。

返回

编译的结果。

例外

optionsnull

sourcesnull

适用于

另请参阅