Struct VmDiagnostic
Diagnostic information produced by the virtual machine.
public readonly record struct VmDiagnostic : IEquatable<VmDiagnostic>
- Implements
- Inherited Members
Constructors
VmDiagnostic(int, string)
Diagnostic information produced by the virtual machine.
public VmDiagnostic(int Code, string Message)
Parameters
Properties
Code
Diagnostic code.
public int Code { get; init; }
Property Value
Message
Diagnostic message.
public string Message { get; init; }