DotNetScriptTestStepBaseCompile Method  | 
 
            Compiles the specified code.
            
 
    Namespace: 
   Hummingbird.TestFramework.Automation
    Assembly:
   Hummingbird.TestFramework.Automation (in Hummingbird.TestFramework.Automation.dll) Version: 1.2.0.0
Syntaxpublic bool Compile(
	string code,
	out List<CompilerError> errors
)
Public Function Compile ( 
	code As String,
	<OutAttribute> ByRef errors As List(Of CompilerError)
) As Boolean
public:
bool Compile(
	String^ code, 
	[OutAttribute] List<CompilerError^>^% errors
)
member Compile : 
        code : string * 
        errors : List<CompilerError> byref -> bool 
Parameters
- code
 - Type: SystemString
The code. - errors
 - Type: System.Collections.GenericListCompilerError
The errors. 
Return Value
Type: 
BooleanA 
Boolean value indicates if the compilation is passed. 
: compilation is passed, otherwise, 
See Also