// ==++==
//
// 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
{
//|
[AttributeUsage(AttributeTargets.Class)]
public class CompilerGlobalScopeAttribute : Attribute
{
//|
public CompilerGlobalScopeAttribute ();
}
}