Click or drag to resize

CompilerDiagnostic Constructor

Initializes a new instance of the CompilerDiagnostic class.

Namespace: Altaxo.Main.Services.ScriptCompilation
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public CompilerDiagnostic(
	int? line,
	int? column,
	DiagnosticSeverity severity,
	string message
)

Parameters

line  NullableInt32
The one-based source line number, if available.
column  NullableInt32
The one-based source column number, if available.
severity  DiagnosticSeverity
The diagnostic severity.
message  String
The diagnostic message.
See Also