Tag: Visual Studio
How to Download and Install Visual Studio Code for Windows ?
This article will explain in simple steps on downloading and installing the Visual Studio Code for Windows in Windows 8.1 . How to Download and Install Visual Studio Code for Windows ? Follow the below steps to download Visual Studio Code Editor and install it on Windows PC. 1. Download Visual Studio code for Windows from http://go.microsoft.com/fwlink/?LinkID=534107 .2. This will download the VSCodeSetup.exe in the…
Using the Find combo box to do a Quick Find in the current document in Visual Studio.
Microsoft Visual Studio has an option which lets the developers to perform a quick find within the document using the Find Combobox. Using the Find combo box to do a Quick Find in the current document in Visual Studio. To use this feature, press Ctrl + D. This will position the cursor to the Find Combobox in the IDE. Type the string that you need…
How to enable Edit and Continue in Visual Studio 2012 ?
Edit and Continue is one of the interesting debugging feature in Visual Studio that lets the developers to edit the code and continue debugging even when the debugger breaks. How to enable Edit and Continue in Visual Studio 2012 ? Follow the below steps to enable Edit and Continue feature in Visual Studio 2012. 1. Open the Visual Studio Options ( Tools -> Options )…
How to Debug a Windows Service written in C# ?
Debugging a Windows Service is one of the difficult thing to do when working on developing a Windows Service project in Visual Studio . One of the method to do the debugging is to attach the debugger to the thread and starting the Windows Service. . This might be little overhead sometimes. How to Debug a Windows Service written in C# ? Incase you need…