Rev | Line | |
---|
[12503] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Diagnostics;
|
---|
| 6 |
|
---|
| 7 | namespace 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.