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

DebuggerStepThroughAttribute.cs « System.Diagnostics « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27d81891a1db193c34b937340eb96b464b5d3442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// System.Diagnostics.DebuggerStepThroughAttribute.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 DebuggerStepThroughAttribute : Attribute
	{
		public DebuggerStepThroughAttribute ()
			: base ()
			{
			}
	}
}