InfZero
InfZero

Reputation: 3045

What the Green band in code editor Visual Studio 2013 means?

I'm reading a VB.NET code file that has a green band beside the line code. See this snapshot:

enter image description here

I also add that this method is an asynchronous method (its signature is shown in the snapshot).

Is it a warning suppression?

Thanks in advance for your help!

P.S.: Another important point is that ReturnValue y a synchronous Sub.

Upvotes: 2

Views: 144

Answers (1)

Damien_The_Unbeliever
Damien_The_Unbeliever

Reputation: 239684

The bands tell you information about your current session in visual studio.

When you edit lines, you'll get a yellow band shown next to them.

When you save the file, the band turns green.

The bands will not be retained if you close and re-open the file.

So from your screenshot, I can tell that you've edited line 329 (maybe added it) during your current session and that that change has been saved to disk.

Upvotes: 2

Related Questions