2
// Copyright (C) 2002. James W. Newkirk, Michael C. Two, Alexei A. Vorontsov. All Rights Reserved.
4
namespace Nunit.Framework
11
[AttributeUsage(AttributeTargets.Method|AttributeTargets.Class, AllowMultiple=false)]
12
public sealed class IgnoreAttribute : Attribute
14
private string reason;
16
public IgnoreAttribute(string reason)
23
get { return reason; }