FtpExtensionAttribute.cs 352 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. #if NET2
  5. ///////
  6. // support for extension methods the 2.0 framework
  7. ///////
  8. namespace System.Runtime.CompilerServices {
  9. /// <summary>
  10. /// support for extension methods the 2.0 framework
  11. /// </summary>
  12. public sealed class ExtensionAttribute : Attribute { }
  13. }
  14. #endif