view Implab/Diagnostics/TraceSourceAttribute.cs @ 250:9f63dade3a40 v3

Working on runnable component
author cin
date Thu, 01 Feb 2018 02:43:35 +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 {
    }
}