Cosmos/source/Cosmos.IL2CPU.Plugs/DebugStubAttribute.cs
2014-11-26 01:13:58 +00:00

19 lines
572 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU.Plugs
{
/// <summary>
/// Method Attribute used to disable the outputing of the call to the DebugStub in that method
/// </summary>
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public sealed class DebugStubAttribute : Attribute
{
/// <summary>
/// Set to <value>true</value> to disable DebugStub
/// </summary>
public bool Off = false;
}
}