##// END OF EJS Templates
minor fixes and improvements of AsyncQueue, additional tests
minor fixes and improvements of AsyncQueue, additional tests

File last commit:

r93:dc4942d09e74 v2
r122:0c8685c8b56b v2
Show More
IComponentContainer.cs
8 lines | 130 B | text/x-csharp | CSharpLexer
/ Implab / IComponentContainer.cs
cin
improved tracing...
r93 using System;
namespace Implab {
public interface IComponentContainer {
void Add(IDisposable component);
}
}