ThreadStaticAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / ThreadStaticAttribute.cs / 1 / ThreadStaticAttribute.cs

                            // ==++== 
//
//   Copyright (c) Microsoft Corporation.  All rights reserved.
//
// ==--== 
/*============================================================
** 
** File:        ThreadStaticAttribute.cs 
**
** 
** Purpose:     Custom attribute to indicate that the field should be treated
**              as a static relative to a thread.
**
** 
**
===========================================================*/ 
namespace System { 

    using System; 

    [AttributeUsage(AttributeTargets.Field, Inherited = false),Serializable()]
[System.Runtime.InteropServices.ComVisible(true)]
    public class  ThreadStaticAttribute : Attribute 
    {
        public ThreadStaticAttribute() 
        { 
        }
    } 
}


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK