use IntPtr instead of CriticalHandle to avoid resurrection issues. It's ok to never...
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / ThreadStaticAttribute.cs
blobc12ac1c18da2d9e241fe65101fe2eddea1277013
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 /*============================================================
6 **
7 **
8 **
9 ** Purpose: Custom attribute to indicate that the field should be treated
10 ** as a static relative to a thread.
11 **
14 ===========================================================*/
16 using System;
18 namespace System
20 [AttributeUsage(AttributeTargets.Field, Inherited = false)]
21 public class ThreadStaticAttribute : Attribute
23 public ThreadStaticAttribute()