Table of Contents

Class QualityIssue

Namespace
SharpConsoleUI.Diagnostics.Analysis
Assembly
SharpConsoleUI.dll

Represents a specific quality issue detected during rendering.

public record QualityIssue : IEquatable<QualityIssue>
Inheritance
QualityIssue
Implements
Inherited Members

Constructors

QualityIssue(string, string, string)

Represents a specific quality issue detected during rendering.

public QualityIssue(string Category, string Description, string Location)

Parameters

Category string

The category of the issue (e.g., "ANSI Optimization", "Dirty Tracking").

Description string

A description of the issue.

Location string

Optional location information (e.g., "Line 5, Column 10").

Properties

Category

The category of the issue (e.g., "ANSI Optimization", "Dirty Tracking").

public string Category { get; init; }

Property Value

string

Description

A description of the issue.

public string Description { get; init; }

Property Value

string

Location

Optional location information (e.g., "Line 5, Column 10").

public string Location { get; init; }

Property Value

string