##// END OF EJS Templates
renamed Promise.Last -> Promise.On...
renamed Promise.Last -> Promise.On Promise.On doesn't changes Promise.IsExclusive property

File last commit:

r93:dc4942d09e74 v2
r104:5f10d54b45df v2
Show More
IComponentContainer.cs
8 lines | 130 B | text/x-csharp | CSharpLexer
/ Implab / IComponentContainer.cs
using System;
namespace Implab {
public interface IComponentContainer {
void Add(IDisposable component);
}
}