// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
//============================================================
//
// File: ThreadStaticAttribute.cool
//
// Purpose: Custom attribute to indicate that the field should be treated
// as a static relative to a thread.
//
//===========================================================
namespace System
{
//|
[AttributeUsage(AttributeTargets.Field, Inherited = false)]
public class ThreadStaticAttribute : Attribute
{
//|
public ThreadStaticAttribute();
}
}