Class KeyLocation
The holder for information about where the keys are located in the source files. Unfortunately, this works only for key=value and table formats for now.
public record KeyLocation : IEquatable<KeyLocation>
- Inheritance
-
KeyLocation
- Implements
- Inherited Members
Constructors
KeyLocation()
The holder for information about where the keys are located in the source files. Unfortunately, this works only for key=value and table formats for now.
public KeyLocation()
KeyLocation(int, int, int)
public KeyLocation(int lineNumber, int columnNumber, int offsetInFile)
Parameters
Properties
ClassName
public string? ClassName { get; set; }
Property Value
ColumnNumber
public int ColumnNumber { get; set; }
Property Value
Empty
public static KeyLocation Empty { get; }
Property Value
FilePath
public string? FilePath { get; set; }
Property Value
LineNumber
public int LineNumber { get; set; }
Property Value
Namespace
public string? Namespace { get; set; }
Property Value
OffsetInFile
public int OffsetInFile { get; set; }