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

DebuggerHiddenAttribute.cs « System.Diagnostics « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b57db27cb8b03f14983262e229d9393086e2a824 (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
//
// System.Diagnostics.DebuggerHiddenAttribute.cs
//
// Author: Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc. http://www.ximian.com
//

using System;

namespace System.Diagnostics
{
	[AttributeUsage (AttributeTargets.Constructor |
			 AttributeTargets.Method | AttributeTargets.Property)]
	[Serializable]
	public sealed class DebuggerHiddenAttribute : Attribute
	{
		public DebuggerHiddenAttribute ()
			: base ()
			{
			}
	}
}