view Implab/Diagnostics/TraceSourceAttribute.cs @ 217:6efb77590b15 v2

More verbose output with TextFileListener
author cin
date Tue, 02 May 2017 17:33:04 +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 {
    }
}