Reputation: 3045
I'm reading a VB.NET code file that has a green band beside the line code. See this snapshot:
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
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