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