Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stringfreezingattribute.cs « system « mscorlib « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a93cd41ecae470e3a254bfab881e199565b36ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
/*============================================================
**
** File:        StringFreezingAttribute.cs
**
**
** Purpose:     Custom attribute to indicate that strings should be frozen
**
**
===========================================================*/

namespace System.Runtime.CompilerServices
{
    
[Serializable]
    [AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
    public sealed class StringFreezingAttribute : Attribute
    {
        public StringFreezingAttribute()
        {
        }
    }
}