CodeCompiler.FromSourceBatch(CompilerParameters, String[]) Method

Definition

Compiles the specified source code strings using the specified options, and returns the results from the compilation.

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

Parameters

options
CompilerParameters

A CompilerParameters object that indicates the compiler options.

sources
String[]

An array of strings containing the source code to compile.

Returns

The results of compilation.

Exceptions

options is null.

-or-

sources is null.

Applies to

See also