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