Add and use IniReader, fix RC again

This commit is contained in:
Matt Nadareski
2020-06-13 23:28:55 -07:00
parent 9b12f965af
commit 350f1c85c5
5 changed files with 520 additions and 415 deletions

View File

@@ -438,6 +438,22 @@
#endregion
#region Reader related
/// <summary>
/// Different types of INI rows being parsed
/// </summary>
public enum IniRowType
{
None,
SectionHeader,
KeyValue,
Comment,
Invalid,
}
#endregion
#region Skippers and Mappers
/// <summary>