namespace MadMilkman.Ini
{
///
/// Defines a behaviour for duplicate occurences.
///
public enum IniDuplication
{
///
/// Allow duplicate names in .
///
Allowed = 0,
///
/// Disallow duplicate names in .
///
///
/// is thrown on duplicate name occurence.
///
Disallowed,
///
/// Ignore duplicate names.
///
///
/// Prevents adding or inserting an if its name already exists in .
///
Ignored
}
}