Benchmarkr.BenchmarkBase.Count C# (CSharp) Method

Count() public abstract method

public abstract Count ( EmployeeQuery query ) : int
query EmployeeQuery
return int
        public abstract int Count(EmployeeQuery query);
        public abstract long Enumerate(EmployeeQuery query);

Usage Example

Example #1
0
 private static void Query_Count(BenchmarkBase benchmark)
 {
     Console.WriteLine($"Counting employees: {benchmark.Count(Query)}");
 }
All Usage Examples Of Benchmarkr.BenchmarkBase::Count