Add costructors to LineParser.
This commit is contained in:
@ -56,6 +56,25 @@ namespace zaaReloaded2.Dictionaries
|
||||
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
|
||||
/// <summary>
|
||||
/// Constructs a LineParser object without a line.
|
||||
/// </summary>
|
||||
public LineParser() { }
|
||||
|
||||
/// <summary>
|
||||
/// Constructs a LineParser object with an initial <paramref name="line"/>.
|
||||
/// </summary>
|
||||
/// <param name="line">Initial line to parse.</param>
|
||||
public LineParser(string line)
|
||||
: this()
|
||||
{
|
||||
Line = line;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Private methods
|
||||
|
||||
void ParseLine()
|
||||
|
Reference in New Issue
Block a user