/System.Runtime.CompilerServices/ExtensionAttribute.cs
C# | 22 lines | 8 code | 5 blank | 9 comment | 1 complexity | 33a336f41606185943d93f0f9ceeb91a MD5 | raw file
1// 2// Author: 3// Jb Evain (jbevain@gmail.com) 4// 5// Copyright (c) 2008 - 2015 Jb Evain 6// Copyright (c) 2008 - 2011 Novell, Inc. 7// 8// Licensed under the MIT/X11 license. 9// 10 11using System; 12 13#if !NET_3_5 && !NET_4_0 14 15namespace System.Runtime.CompilerServices { 16 17 [AttributeUsage (AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly)] 18 sealed class ExtensionAttribute : Attribute { 19 } 20} 21 22#endif