namespace BytecodeApi.IniParser;
///
/// Represents a line of an that could not be parsed.
///
public sealed class IniErrorLine
{
///
/// Gets the one-based line number of the line at which parsing failed.
///
public int LineNumber { get; }
///
/// Gets the line at which parsing failed as its original representation.
///
public string Line { get; }
///
/// Initializes a new instance of the class with the specified line number and line.
///
/// The one-based line number of the line at which parsing failed.
/// The line at which parsing failed as its original representation.
public IniErrorLine(int lineNumber, string line)
{
Check.ArgumentNull(line);
LineNumber = lineNumber;
Line = line;
}
}