Changeset 12705
- Timestamp:
- 07/10/15 11:59:38 (9 years ago)
- Location:
- stable
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 12431-12433
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Data/3.3 merged: 12431-12433
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3/DoubleArray.cs
r12009 r12705 56 56 } 57 57 protected virtual string GetValue(int index) { 58 return this[index].ToString( );58 return this[index].ToString("r"); 59 59 } 60 60 protected virtual bool SetValue(string value, int index) { -
stable/HeuristicLab.Data/3.3/DoubleMatrix.cs
r12009 r12705 61 61 } 62 62 protected virtual string GetValue(int rowIndex, int columIndex) { 63 return this[rowIndex, columIndex].ToString( );63 return this[rowIndex, columIndex].ToString("r"); 64 64 } 65 65 protected virtual bool SetValue(string value, int rowIndex, int columnIndex) { -
stable/HeuristicLab.Data/3.3/DoubleRange.cs
r12009 r12705 56 56 57 57 public override string ToString() { 58 return string.Format("Start: {0 }, End: {1}", Start, End);58 return string.Format("Start: {0:r}, End: {1:r}", Start, End); 59 59 } 60 60
Note: See TracChangeset
for help on using the changeset viewer.