/Main/src/Samples/v0.2/PerfCounter/IFilter.cs
# · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · c406825bfc28a32ebe720149500dc752 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace PerfCounterChart
- {
- public interface IFilter<T>
- {
- IList<T> Filter(IList<T> c);
- }
- }