Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Common/NotNullAttribute.cs @ 12503

Last change on this file since 12503 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 533 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Diagnostics;
6
7namespace Microsoft.Research.DynamicDataDisplay
8{
9  /// <summary>
10  /// This attribute indicates that there will be ArgumentNullException thrown if null will be passed to property's setter.
11  /// Used in unit tests only.
12  /// </summary>
13  [Conditional("DEBUG")]
14  [AttributeUsage(AttributeTargets.Property, AllowMultiple=false, Inherited=false)]
15  public sealed class NotNullAttribute : Attribute
16  {
17  }
18}
Note: See TracBrowser for help on using the repository browser.