ICallable.cs 103 B

1234567
  1. namespace SharpCifs.Util.Sharpen
  2. {
  3. internal interface ICallable<T>
  4. {
  5. T Call();
  6. }
  7. }