Table of Contents

Struct ProblemOriginInformation

Namespace
Olve.Results
Assembly
Olve.Results.dll

Represents the origin of a problem.

public readonly record struct ProblemOriginInformation : IEquatable<ProblemOriginInformation>
Implements
Inherited Members

Constructors

ProblemOriginInformation(IPath, int)

Represents the origin of a problem.

public ProblemOriginInformation(IPath FilePath, int LineNumber)

Parameters

FilePath IPath

The path to the file where the problem originated.

LineNumber int

The line number in the file where the problem originated.

Properties

FilePath

The path to the file where the problem originated.

public IPath FilePath { get; init; }

Property Value

IPath

LineNumber

The line number in the file where the problem originated.

public int LineNumber { get; init; }

Property Value

int

LinkString

Returns a string representation of the path as a clickable link for the current platform.

public string LinkString { get; }

Property Value

string