IBasicNoUISyntaxCheckThis Method |
Checks for syntax errors.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
SyntaxError[] SyntaxCheckThis(
string code,
int errorLimit
)
Function SyntaxCheckThis (
code As String,
errorLimit As Integer
) As Error()
array<Error^>^ SyntaxCheckThis(
String^ code,
int errorLimit
)
Parameters
- code String
-
Check syntax of this code.
- errorLimit Int32
-
Maximum number of errors allowed (>= 1).
Return Value
Error
An array of
Error objects.
RemarksSyntaxCheckThis parses the code to check for possible errors.
This will include any #uses code as well.
See Also