Mercurial > pub > ImplabNet
view Implab/Diagnostics/TraceSourceAttribute.cs @ 216:1e082fb67a46 v2
Fixed component container
author | cin |
---|---|
date | Tue, 25 Apr 2017 19:51:33 +0300 |
parents | a01d9df88d74 |
children |
line wrap: on
line source
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 { } }