ICallable.cs 89 B

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