I have a large C# application, with multiple projects in Visual Studio 2013. I want to track the value of a particular variable, say varX, and find the exact statement (in one of the files) that is changing the value of varX.
Therefore, I want the debugger to step through the application, and stop exactly at the statement which changes the value of varX.
Can anyone tell me what debugging options/features can help me do the aforementioned?
Edit: By the way, the definition of the variable varX is not available in code. It gets it's definition from a DLL file.