Changeset 9457
- Timestamp:
- 05/07/13 08:28:27 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/TableFileParser.cs
r9456 r9457 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;
Note: See TracChangeset
for help on using the changeset viewer.