CompilerGlobalScopeAttribute.cs 380 B

12345678910111213141516171819
  1. //
  2. // System.Runtime.CompilerServices.CompilerGlobalScopeAttribute.cs
  3. //
  4. // Author: Duncan Mak ([email protected])
  5. //
  6. // (C) Copyright, Ximian Inc.
  7. using System;
  8. namespace System.Runtime.CompilerServices {
  9. [AttributeUsage (AttributeTargets.Class)] [Serializable]
  10. public class CompilerGlobalScopeAttribute : Attribute
  11. {
  12. public CompilerGlobalScopeAttribute ()
  13. {
  14. }
  15. }
  16. }