##// END OF EJS Templates
Added a casting method for promises.
Added a casting method for promises.

File last commit:

r12:eb418ba8275b promises
r29:768f7deeb55b default
Show More
ICancellable.cs
10 lines | 186 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab {
public interface ICancellable {
bool Cancel();
}
}