System.Diagnostics.SwitchAttribute
namespace System.Diagnostics
{
public sealed class SwitchAttribute : Attribute
{
public string SwitchDescription { get; set; }
public string SwitchName { get; set; }
public Type SwitchType { get; set; }
public SwitchAttribute(string switchName, Type switchType);
public static SwitchAttribute[] GetAll(Assembly assembly);
}
}