Changeset 8085 for branches/GP-MoveOperators/HeuristicLab.Data.Views/3.3/StringConvertibleArrayView.cs
- Timestamp:
- 06/21/12 18:02:33 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:ignore
-
old new 20 20 bin 21 21 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/GP-MoveOperators/HeuristicLab.Data.Views/3.3/StringConvertibleArrayView.cs
r7318 r8085 195 195 } 196 196 private string[] SplitClipboardString(string clipboardText) { 197 clipboardText = clipboardText.Remove(clipboardText.Length - Environment.NewLine.Length); //remove last newline constant 197 if (clipboardText.EndsWith(Environment.NewLine)) 198 clipboardText = clipboardText.Remove(clipboardText.Length - Environment.NewLine.Length); //remove last newline constant 198 199 return clipboardText.Split(new string[] { Environment.NewLine, "\t" }, StringSplitOptions.None); 199 200 }
Note: See TracChangeset
for help on using the changeset viewer.