explicitattribute.cs

来自「C#编写的网络爬虫程序 效率很高 很好用!」· CS 代码 · 共 22 行

CS
22
字号
using System;

namespace NUnit.Framework
{
	/// <summary>
	/// ExplicitAttribute marks a test or test fixture so that it will
	/// only be run if explicitly executed from the gui or command line
	/// or if it is included by use of a filter. The test will not be
	/// run simply because an enclosing suite is run.
	/// </summary>
	[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method, AllowMultiple=false)]
	public sealed class ExplicitAttribute : Attribute
	{
		/// <summary>
		/// Constructor
		/// </summary>
		public ExplicitAttribute()
		{
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?