Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/12/08 13:10:09 (16 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristLab.Data namespace (#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/ItemList.cs

    r68 r737  
    2828
    2929namespace HeuristicLab.Data {
     30  /// <summary>
     31  /// Generic list of elements that implement the interface <see cref="IItem"/>.
     32  /// </summary>
    3033  public class ItemList : ItemList<IItem> {
     34    /// <summary>
     35    /// Clones the current list and all its elements.
     36    /// </summary>
     37    /// <param name="clonedObjects">A dictionary of all already cloned objects.</param>
     38    /// <returns>The cloned instance as <see cref="ItemList"/>.</returns>
    3139    public override object Clone(IDictionary<Guid, object> clonedObjects) {
    3240      ItemList clone = new ItemList();
Note: See TracChangeset for help on using the changeset viewer.