public CSVFile(string path) { _path = String.Copy(path); _nCols = 0; _firstCol = _lastCol = null; _file = new TDFile(path); }
public void GetColumn(String value, CSVColumn col) { if (col != null && _colPtrs[col._index] != null) { value = _colPtrs[col._index]; } }
public CSVColumn(int index, string name) { _index = index; _name = string.Copy(name); _next = null; }
public void GetColumn(double value, CSVColumn col) { //if(col != null && _colPtrs[col._index] != null) // value = wxAtof(_colPtrs[col._index]); }
public void GetColumnHex(int value, CSVColumn col) { //if(col != null && _colPtrs[col._index] != null) // wxSscanf(_colPtrs[col._index], wxPorting.T("%x"), &value); }