Struct ProblemOriginInformation
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
FilePathIPathThe path to the file where the problem originated.
LineNumberintThe 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
LineNumber
The line number in the file where the problem originated.
public int LineNumber { get; init; }
Property Value
LinkString
Returns a string representation of the path as a clickable link for the current platform.
public string LinkString { get; }