Mercurial > pub > ImplabNet
view Implab/ICancellable.cs @ 214:9c32ef39b851 v2
Added the time delta column to the interactive trace listener
| author | cin |
|---|---|
| date | Fri, 14 Apr 2017 15:57:23 +0300 |
| parents | 0fa293bb1351 |
| children |
line wrap: on
line source
using System; namespace Implab { public interface ICancellable { void Cancel(); void Cancel(Exception reason); } }
