mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
11 lines
380 B
C#
11 lines
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
|