diff options
Diffstat (limited to 'src/mscorlib/src/System/Reflection/GenericParameterAttributes.cs')
-rw-r--r-- | src/mscorlib/src/System/Reflection/GenericParameterAttributes.cs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/mscorlib/src/System/Reflection/GenericParameterAttributes.cs b/src/mscorlib/src/System/Reflection/GenericParameterAttributes.cs deleted file mode 100644 index d954b2e0f2..0000000000 --- a/src/mscorlib/src/System/Reflection/GenericParameterAttributes.cs +++ /dev/null @@ -1,22 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -// - -namespace System.Reflection -{ - [Flags()] - public enum GenericParameterAttributes - { - None = 0x0000, - VarianceMask = 0x0003, - Covariant = 0x0001, - Contravariant = 0x0002, - SpecialConstraintMask = 0x001C, - ReferenceTypeConstraint = 0x0004, - NotNullableValueTypeConstraint = 0x0008, - DefaultConstructorConstraint = 0x0010, - } -} - |