Table of Contents

Class CliDiagnostic

Namespace
Pl0.Cli.Cli
Assembly
Pl0.Cli.dll

Represents a CLI diagnostic with code and message.

public sealed record CliDiagnostic : IEquatable<CliDiagnostic>
Inheritance
CliDiagnostic
Implements
Inherited Members

Constructors

CliDiagnostic(int, string)

Represents a CLI diagnostic with code and message.

public CliDiagnostic(int Code, string Message)

Parameters

Code int

Diagnostic code.

Message string

Diagnostic message.

Properties

Code

Diagnostic code.

public int Code { get; init; }

Property Value

int

Message

Diagnostic message.

public string Message { get; init; }

Property Value

string