Mono.CSharp.CSharpCodeCompiler.CompileAssemblyFromDomBatch C# (CSharp) Method

CompileAssemblyFromDomBatch() public method

public CompileAssemblyFromDomBatch ( CompilerParameters options, CodeCompileUnit ea ) : CompilerResults
options System.CodeDom.Compiler.CompilerParameters
ea System.CodeDom.CodeCompileUnit
return System.CodeDom.Compiler.CompilerResults
		public CompilerResults CompileAssemblyFromDomBatch (CompilerParameters options, CodeCompileUnit[] ea)
		{
			if (options == null) {
				throw new ArgumentNullException ("options");
			}

			try {
				return CompileFromDomBatch (options, ea);
			} finally {
				options.TempFiles.Delete ();
			}
		}