view Implab/ICancellable.cs @ 113:468d156e434e v2-1

working on linked list
author cin
date Wed, 10 Dec 2014 01:29:53 +0100
parents c761fc982e1d
children f75cfa58e3d4
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Implab {
    public interface ICancellable {
        void Cancel();
    }
}