namespace MadMilkman.Ini
{
///
/// Defines comment's starting character.
///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1008:EnumsShouldHaveZeroValue",
Justification = "I'm defining and using enum values with specific characters and null character, aka '\0', has no purpose here.")]
public enum IniCommentStarter
{
///
/// Use ';' as comment's starting character.
///
Semicolon = ';',
///
/// Use '#' as comment's starting character.
///
Hash = '#'
}
}