From the course: Visual Studio: Advanced Debugging Tools

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

View other events

View other events - Visual Studio Tutorial

From the course: Visual Studio: Advanced Debugging Tools

Start my 1-month free trial

View other events

- [Instructor] Here is a scenario, tell me if this sounds familiar to you. You're working on a project for a few months, and you decide to re-factor some code. Now there's many ways of doing this. One way that some people will re-factor is by writing the new code and commenting out the old code, and eventually you'll clean up that commented code. But there are times when you can inadvertently leave in live code, that should have been removed. And what we want to look at in this demonstration is how we can use IntelliTrace to track down something like that. Let's look at our code, this is our library, the RobotNameGenerator, it's used to generate our teams of robots for the robot competition. And the way we did this in the past, is we would pull the names out of these plain text files. So we'd pull this list of names for the crew names, and we'd pull information from this text file for their prime names. We've decided that we…

Contents