Fix pragma warning restore (dotnet/coreclr#26389)
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / FlagsAttribute.cs
blob4f3ab36bfd5a7eb637b95367f8236dd8af015055
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 ////////////////////////////////////////////////////////////////////////////////
8 namespace System
10 // Custom attribute to indicate that the enum
11 // should be treated as a bitfield (or set of flags).
12 // An IDE may use this information to provide a richer
13 // development experience.
14 [AttributeUsage(AttributeTargets.Enum, Inherited = false)]
15 public class FlagsAttribute : Attribute
17 public FlagsAttribute()