Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove green line near breakpoint in visual studio 2010?

I have no clue what this line means, how it got there, or how to remove it. damn green line

like image 524
TheKobra Avatar asked Apr 24 '13 22:04

TheKobra


People also ask

How do I get rid of the green lines in Visual Studio?

Currently, as you may already know, there is an option to "disable" the green squiggles - Tools > Options > Text Editor > C/C++ > Advanced > "Disable Code Analysis Squiggles".

What does the Green Line in Visual Studio mean?

Green: The line has been changed and saved. Orange: The line has been changed, saved, and the change undone.

How do I run Visual Basic code in Visual Studio code?

If the start window is not open, choose File > Start Window. On the start window, choose Create a new project. On the Create a new project window, enter, or type console in the search box. Next, choose Visual Basic from the Language list, and then choose Windows from the Platform list.


1 Answers

The colored lines on the side of the Visual Studio text editor display lines that have changed since open and are unsaved (yellow) or saved (green).

It's a handy way to quickly tell what changes you've made to the file at a glance. However if you want to turn it off you can toggle it by going to Tools -> Options -> Text Editor and unchecking Track Changes.

Turn off the "Track Changes" option for the "Text Editor" under Options

like image 55
jstromwick Avatar answered Nov 01 '22 00:11

jstromwick