public IniSectionConfiguration([NotNull] string section, [NotNull] SimpleMapper <IniContext> mapper,
                                [NotNull] IIniSerializerConfiguration configuration, [NotNull] Type targeType)
 {
     _section       = section;
     _mapper        = mapper;
     _configuration = configuration;
     _targeType     = targeType;
 }
 public IniSectionConfiguration([NotNull] string section, [NotNull] SimpleMapper<IniContext> mapper,
                                [NotNull] IIniSerializerConfiguration configuration, [NotNull] Type targeType)
 {
     _section = section;
     _mapper = mapper;
     _configuration = configuration;
     _targeType = targeType;
 }
 public IniKeyConfiguration(string section, IIniSerializerConfiguration configuration,
                            SimpleMapper <IniContext> mapper, bool isSingle, Type targetType)
 {
     _section       = section;
     _configuration = configuration;
     _mapper        = mapper;
     _isSingle      = isSingle;
     _targetType    = targetType;
 }
 public IniKeyConfiguration([NotNull] string section, [NotNull] IIniSerializerConfiguration configuration,
                            [NotNull] SimpleMapper<IniContext> mapper, bool isSingle, [NotNull] Type targetType)
 {
     _section = section;
     _configuration = configuration;
     _mapper = mapper;
     _isSingle = isSingle;
     _targetType = targetType;
 }