Question about ConsoleApplication sample report
Question about ConsoleApplication sample report
In one of the sample reports generated for the ConsoleApplication sample, there are some function coverage entries under class Order I don't understand. There are entries for TotalCost TotalItems TotalPrice that I understand as function coverage lines. However, what to the following lines mean? b4 b0 b__2
Thanks, Nick Piazza nick.piazza@carefusion.com
RE: Question about ConsoleApplication sample repor
Nick,
The C# compiler adds an anonymous method to the class when it compiles each lambda, and that's what you're seeing.
Thanks, Alan NCover Support