Inheritance: System.Configuration.ConfigurationSection
 public DictionaryParser(DictionaryParserConfig config)
 {
     _config        = config;
     _columnPattern = new Regex(Regex.Escape(_config.ColumnDelimiter), RegexOptions.Compiled);
     _rowPattern    = new Regex(Regex.Escape(_config.RowDelimiter), RegexOptions.Compiled);
 }
		public DictionaryParser(DictionaryParserConfig config)
		{
			_config = config;
			_columnPattern = new Regex(Regex.Escape(_config.ColumnDelimiter), RegexOptions.Compiled);
			_rowPattern = new Regex(Regex.Escape(_config.RowDelimiter), RegexOptions.Compiled);
		}