LibHac/LibHac.Nand/DiscUtils.Core/System/ExtensionAttribute.cs
2018-08-31 10:50:28 -05:00

11 lines
No EOL
380 B
C#

#if NET20
namespace System.Runtime.CompilerServices
{
/// <summary>
/// Indicates that a method is an extension method, or that a class or assembly contains
/// extension methods.
/// </summary>
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)]
public sealed class ExtensionAttribute : Attribute { }
}
#endif