File: system\runtime\compilerservices\compilerglobalscopeattribute.cs
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib)
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
/*============================================================
**
** Class:  CompilerGlobalScopeAttribute
**
**
** Purpose: Attribute used to communicate to the VS7 debugger
**          that a class should be treated as if it has
**          global scope.
**
** 
===========================================================*/
    
 
namespace System.Runtime.CompilerServices
{
    [Serializable]
    [AttributeUsage(AttributeTargets.Class)]
    [System.Runtime.InteropServices.ComVisible(true)]
    public class CompilerGlobalScopeAttribute : Attribute
    {
       public CompilerGlobalScopeAttribute () {}
    }
}