Mercurial > pub > ImplabNet
view Implab/ICancellable.cs @ 213:9ee78a345738 v2
Minor code changes
| author | cin |
|---|---|
| date | Tue, 11 Apr 2017 01:35:18 +0300 |
| parents | 0fa293bb1351 |
| children |
line wrap: on
line source
using System; namespace Implab { public interface ICancellable { void Cancel(); void Cancel(Exception reason); } }
