Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/14/10 00:42:28 (14 years ago)
Author:
epitzer
Message:

Update API docs. (#548)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Default/DebugString/DebugString.cs

    r3002 r3016  
    99
    1010namespace HeuristicLab.Persistence.Default.DebugString {
    11  
     11
     12  /// <summary>
     13  /// Simple write-only format for debugging purposes.
     14  /// </summary>
    1215  [StorableClass(StorableClassType.MarkedOnly)] 
    1316  public class DebugString : ISerialData {
    1417
     18    /// <summary>
     19    /// Gets or sets the data.
     20    /// </summary>
     21    /// <value>The data.</value>
    1522    [Storable]
    1623    public string Data { get; set; }
     
    1825    private DebugString() { }
    1926
     27    /// <summary>
     28    /// Initializes a new instance of the <see cref="DebugString"/> class.
     29    /// </summary>
     30    /// <param name="s">The string.</param>
    2031    public DebugString(string s) {
    2132      Data = s;
Note: See TracChangeset for help on using the changeset viewer.