Mercurial > pub > ImplabNet
view Implab/Diagnostics/TraceSourceAttribute.cs @ 257:440801d88019 v3
working on runnable components
author | cin |
---|---|
date | Fri, 13 Apr 2018 00:43:10 +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 { } }