| 12345678910111213141516171819 |
- //
- // System.Runtime.CompilerServices.CompilerGlobalScopeAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // (C) Copyright, Ximian Inc.
- using System;
- namespace System.Runtime.CompilerServices {
- [AttributeUsage (AttributeTargets.Class)] [Serializable]
- public class CompilerGlobalScopeAttribute : Attribute
- {
- public CompilerGlobalScopeAttribute ()
- {
- }
- }
- }
|