Ejemplo n.º 1
0
 public DictionaryConverter(IIniConverter underlyingTypeIniConverter,
                            IIniConverter underlyingKeyTypeIniConverter,
                            IReadSectionsParser readSectionsParser)
 {
     _underlyingTypeIniConverter    = underlyingTypeIniConverter;
     _underlyingKeyTypeIniConverter = underlyingKeyTypeIniConverter;
     _readSectionsParser            = readSectionsParser;
 }
 public IniParserWrapper(string iniFilePath, int bufferSize, IReadSectionsParser readSectionsParser)
 {
     _iniFilePath        = iniFilePath;
     _readSectionsParser = readSectionsParser;
     _buffer             = new byte[bufferSize];
 }