how to access the implementation Count<TSource>(IQueryable<TSource>)
method?
That's the assembler code:
how to access the implementation Count<TSource>(IQueryable<TSource>)
method?
That's the assembler code:
In the link you have given (description of Queryable.Count Method) it directly says that it depends on the type of the source parameter.
Meaning it "redirects" to the count implementation of the Type you have given of 'source' parameter
Remarks part:
Count(IQueryable) depends on the implementation of the type of the source parameter. The expected behavior is that it counts the number of items in source.