Changeset 2669 for trunk/sources/HeuristicLab.Collections
- Timestamp:
- 01/22/10 03:29:02 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Collections/3.3/IndexedItem.cs ΒΆ
r2623 r2669 44 44 public override string ToString() { 45 45 StringBuilder sb = new StringBuilder(); 46 sb.Append("[").Append(index).Append(" ,");46 sb.Append("[").Append(index).Append(": "); 47 47 if (value != null) sb.Append(value.ToString()); 48 48 sb.Append("]");
Note: See TracChangeset
for help on using the changeset viewer.