private void SetKey(string key, CSVValue value) { if (_atrributesDic.ContainsKey(key)) { _atrributesDic[key] = value; } }
private CSVValue GetValue(string key) { CSVValue value = new CSVValue(string.Empty); if (_atrributesDic.ContainsKey(key)) { value = _atrributesDic[key]; } return(value); }