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/Diagnostics/DebuggerNonUserCodeAttribute.cs')
-rw-r--r--netcore/System.Private.CoreLib/shared/System/Diagnostics/DebuggerNonUserCodeAttribute.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/netcore/System.Private.CoreLib/shared/System/Diagnostics/DebuggerNonUserCodeAttribute.cs b/netcore/System.Private.CoreLib/shared/System/Diagnostics/DebuggerNonUserCodeAttribute.cs
deleted file mode 100644
index 1b61cb72628..00000000000
--- a/netcore/System.Private.CoreLib/shared/System/Diagnostics/DebuggerNonUserCodeAttribute.cs
+++ /dev/null
@@ -1,12 +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.Diagnostics
-{
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Constructor | AttributeTargets.Struct, Inherited = false)]
- public sealed class DebuggerNonUserCodeAttribute : Attribute
- {
- public DebuggerNonUserCodeAttribute() { }
- }
-}