Initial commit
[mono.git] / mcs / class / referencesource / mscorlib / system / runtime / compilerservices / extensionattribute.cs
1 using System;
2
3 namespace System.Runtime.CompilerServices
4 {
5     /// <summary>
6     /// Indicates that a method is an extension method, or that a class or assembly contains extension methods.
7     /// </summary>
8     [AttributeUsage(AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly)]
9     public sealed class ExtensionAttribute : Attribute { }
10 }