Changeset 13925 for trunk/sources
- Timestamp:
- 06/20/16 14:50:25 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/TableFileParser.cs
r13584 r13925 514 514 CurrentLine = reader.ReadLine(); 515 515 CurrentLineNumber++; 516 try{516 if (reader.BaseStream.CanSeek) { 517 517 BytesRead = reader.BaseStream.Position; 518 } 519 catch (IOException) { 518 } else { 520 519 BytesRead += CurrentLine.Length + 2; // guess 521 }522 catch (NotSupportedException) {523 BytesRead += CurrentLine.Length + 2;524 520 } 525 521 int i = 0;
Note: See TracChangeset
for help on using the changeset viewer.