Changeset 1167 for trunk/sources/HeuristicLab.Logging/Logger.cs
- Timestamp:
- 01/22/09 12:06:29 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Logging/Logger.cs
r1117 r1167 28 28 29 29 namespace HeuristicLab.Logging { 30 /// <summary> 31 /// Logs a specified value into a specified log object. 32 /// </summary> 30 33 public class Logger : OperatorBase { 34 /// <inheritdoc select="summary"/> 31 35 public override string Description { 32 36 get { return @"TODO\r\nOperator description still missing ..."; } 33 37 } 34 38 39 /// <summary> 40 /// Initializes a new instance of <see cref="Logger"/> with two variable infos 41 /// (<c>Value</c> and <c>Log</c>). 42 /// </summary> 35 43 public Logger() 36 44 : base() { … … 39 47 } 40 48 49 /// <summary> 50 /// Logs a specified value into a specified log object. 51 /// </summary> 52 /// <param name="scope">The current scope.</param> 53 /// <returns><c>null</c>.</returns> 41 54 public override IOperation Apply(IScope scope) { 42 55 ObjectData[] values = new ObjectData[scope.SubScopes.Count];
Note: See TracChangeset
for help on using the changeset viewer.