/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
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Text; 5 6namespace PerfCounterChart 7{ 8 public interface IFilter<T> 9 { 10 IList<T> Filter(IList<T> c); 11 } 12}