From the course: Visual Basic Essential Training

Unlock the full course today

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

Run the example code from Visual Studio

Run the example code from Visual Studio - Visual Basic Tutorial

From the course: Visual Basic Essential Training

Start my 1-month free trial

Run the example code from Visual Studio

- [Instructor] During a successful build, one or more .NET executable files are created on your hard drive. By default, they are placed in this location. Go over here to the File Explorer, go into the bin folder, bin standing for binary, and then the Debug folder. And there are the files that were created during the build process. Of course, there is an .exe file here, this is the one that we'll use to run the application. There's also a .config file, a .pdb file, and an .xml file. The .pdb file is important when we debug the application because it contains what are called debug symbols. The observant among you might have noticed that these files also appeared over here. That's because I left the Show All Files button enabled. So I can see the bin folder here, and the Debug folder. And there's the .exe file and all the other files. The .xml file does not show up in here. I'll go over to the File Explorer, select all the…

Contents