Your Custom Text Here

 

C# Decisions - Tools

 

The Debugger

A logic error is a mistake that does not prevent an application from running but causes the application to produce incorrect results.  Mathematical mistakes, assigning a value to the wrong variable, or assigning the wrong value to a variable are example of logic errors.

Logic errors can be difficult to find.  Today Visual Studio, Python, Java, and virtually all the most common languages have tools that make the debugging process easier. In Visual Studio it’s called the debugger.

Moving Your Application

to move an application to a new location you need to more everything and keep everything together.  Visual Studio creates a lot of files.  Zip will allow you to compress that application in total and place it in a new location where it can be safely opened.  The project will run as normal in the new location