TraceSourceAttribute.cs
10 lines
| 289 B
| text/x-csharp
|
CSharpLexer
cin
|
r212 | using System; | ||
namespace Implab.Diagnostics { | ||||
/// <summary> | ||||
/// Used to mark class which uses <see cref="Trace{T}"/> class to trace it's events | ||||
/// </summary> | ||||
[AttributeUsage(AttributeTargets.Class)] | ||||
public class TraceSourceAttribute : Attribute { | ||||
} | ||||
} | ||||