views:

76

answers:

2

In Visual Studio, what does the vertical color bar between the line numbers and the code mean? Sometimes there is green, yellow, or nothing.

+4  A: 

Nothing means no changes.

Green means saved changes. These will disappear when the file is closed and reopened.

Yellow means unsaved changes. These change to green when the file is saved.

ChrisF
Very simple.Thanks.
Patrick
+2  A: 

The line indicates changes to code since last save.

  • No color = no change
  • Yellow = Track changes before save
  • Green = Track changes after save
JYelton