Cosmos/source/Cosmos.IL2CPU.API/AsmLabelAttribute.cs
José Pedro 5374815443 g3
2017-08-01 18:18:03 +01:00

17 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.IL2CPU.API
{
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor | AttributeTargets.Field, AllowMultiple = true)]
public sealed class AsmLabelAttribute : Attribute
{
public string Label { get; }
public AsmLabelAttribute(string aLabel)
{
Label = aLabel;
}
}
}