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