How to compare execution paths in .NET?

I am debugging the source code of the .NET Framework to look for an error in my application . I have two identical entries for the code, where one shows an error and the other does not. However, following the code path in the .NET source is quite difficult.

What I need is a tool that can be done for both inputs, and compare the results to see which code paths are accepted, how internal values ​​differ, etc.

Is it available for .NET?

+3
source share
6 answers

nCover. , , .

+3
0

, , ANTS. , , .

0

SD # Test Coverage Tool , , .

, . , , . , .

.NET.

0

:

Enterprise Visual Studio 2008 ( )

0

Source: https://habr.com/ru/post/1732478/


All Articles