Mercurial > pub > ImplabNet
view Implab/ICancellable.cs @ 217:6efb77590b15 v2
More verbose output with TextFileListener
| author | cin |
|---|---|
| date | Tue, 02 May 2017 17:33:04 +0300 |
| parents | 0fa293bb1351 |
| children |
line wrap: on
line source
using System; namespace Implab { public interface ICancellable { void Cancel(); void Cancel(Exception reason); } }
