/System.Runtime.CompilerServices/ExtensionAttribute.cs

http://github.com/jbevain/cecil · 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. using System;
  11. #if !NET_3_5 && !NET_4_0
  12. namespace System.Runtime.CompilerServices {
  13. [AttributeUsage (AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Assembly)]
  14. sealed class ExtensionAttribute : Attribute {
  15. }
  16. }
  17. #endif