2008-03-05 09:52:00 -05:00
|
|
|
// ==++==
|
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// ==--==
|
2008-11-17 18:29:00 -05:00
|
|
|
//============================================================
|
|
|
|
//
|
|
|
|
// Class: CompilerGlobalScopeAttribute
|
|
|
|
//
|
|
|
|
// Purpose: Attribute used to communicate to the VS7 debugger
|
|
|
|
// that a class should be treated as if it has
|
|
|
|
// global scope.
|
|
|
|
//
|
|
|
|
//===========================================================
|
2008-03-05 09:52:00 -05:00
|
|
|
|
|
|
|
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
|
|
{
|
|
|
|
//| <include file='doc\CompilerGlobalScopeAttribute.uex' path='docs/doc[@for="CompilerGlobalScopeAttribute"]/*' />
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
|
|
public class CompilerGlobalScopeAttribute : Attribute
|
|
|
|
{
|
|
|
|
//| <include file='doc\CompilerGlobalScopeAttribute.uex' path='docs/doc[@for="CompilerGlobalScopeAttribute.CompilerGlobalScopeAttribute"]/*' />
|
|
|
|
public CompilerGlobalScopeAttribute ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|