##// END OF EJS Templates
Fixed InteractiveListener to support OLE and clipboard....
Fixed InteractiveListener to support OLE and clipboard. Safe.Dispose methods made more convinent

File last commit:

r212:a01d9df88d74 v2
r215:fe5101083150 v2
Show More
TraceSourceAttribute.cs
10 lines | 289 B | text/x-csharp | CSharpLexer
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 {
}
}