- Timestamp:
- 03/14/10 00:42:28 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/DebugString.cs
r3002 r3016 9 9 10 10 namespace HeuristicLab.Persistence.Default.DebugString { 11 11 12 /// <summary> 13 /// Simple write-only format for debugging purposes. 14 /// </summary> 12 15 [StorableClass(StorableClassType.MarkedOnly)] 13 16 public class DebugString : ISerialData { 14 17 18 /// <summary> 19 /// Gets or sets the data. 20 /// </summary> 21 /// <value>The data.</value> 15 22 [Storable] 16 23 public string Data { get; set; } … … 18 25 private DebugString() { } 19 26 27 /// <summary> 28 /// Initializes a new instance of the <see cref="DebugString"/> class. 29 /// </summary> 30 /// <param name="s">The string.</param> 20 31 public DebugString(string s) { 21 32 Data = s;
Note: See TracChangeset
for help on using the changeset viewer.