PageRenderTime 34ms CodeModel.GetById 9ms RepoModel.GetById 0ms app.codeStats 0ms

/Main/src/Samples/v0.2/PerfCounter/IFilter.cs

#
C# | 12 lines | 11 code | 1 blank | 0 comment | 0 complexity | c406825bfc28a32ebe720149500dc752 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace PerfCounterChart
  6. {
  7. public interface IFilter<T>
  8. {
  9. IList<T> Filter(IList<T> c);
  10. }
  11. }