- Timestamp:
- 05/06/13 15:34:17 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/TableFileParser.cs
r8885 r9449 33 33 public class TableFileParser { 34 34 private const int BUFFER_SIZE = 65536; 35 private static readonly char[] POSSIBLE_SEPARATORS = new char[] { ',', ';', '\t' };35 private static readonly char[] POSSIBLE_SEPARATORS = new char[] { ',', ';', '\t', ' ' }; 36 36 private Tokenizer tokenizer; 37 37 private List<List<object>> rowValues; … … 457 457 458 458 [Serializable] 459 p rivateclass DataFormatException : Exception {459 public class DataFormatException : Exception { 460 460 private int line; 461 461 public int Line {
Note: See TracChangeset
for help on using the changeset viewer.