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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'netcore/System.Private.CoreLib/shared/System/Runtime/CompilerServices/MethodImplAttribute.cs')
-rw-r--r--netcore/System.Private.CoreLib/shared/System/Runtime/CompilerServices/MethodImplAttribute.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/netcore/System.Private.CoreLib/shared/System/Runtime/CompilerServices/MethodImplAttribute.cs b/netcore/System.Private.CoreLib/shared/System/Runtime/CompilerServices/MethodImplAttribute.cs
deleted file mode 100644
index 18900b37bea..00000000000
--- a/netcore/System.Private.CoreLib/shared/System/Runtime/CompilerServices/MethodImplAttribute.cs
+++ /dev/null
@@ -1,29 +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.Runtime.CompilerServices
-{
- // Custom attribute to specify additional method properties.
- [AttributeUsage(AttributeTargets.Method | AttributeTargets.Constructor, Inherited = false)]
- public sealed class MethodImplAttribute : Attribute
- {
- public MethodCodeType MethodCodeType;
-
- public MethodImplAttribute(MethodImplOptions methodImplOptions)
- {
- Value = methodImplOptions;
- }
-
- public MethodImplAttribute(short value)
- {
- Value = (MethodImplOptions)value;
- }
-
- public MethodImplAttribute()
- {
- }
-
- public MethodImplOptions Value { get; }
- }
-}