Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2015: What does "Suppression State" column in "Error List" window indicate?

Visual Studio 2015: What does "Suppression State" column in "Error List" window indicate?

like image 546
thatskj Avatar asked Jul 21 '17 10:07

thatskj


People also ask

How do you read errors in Visual Studio?

To display the Error List, choose View > Error List, or press Ctrl+\+E.

How do I resolve build errors in Visual Studio?

In Visual Studio, go to the menu bar and choose Help > Send Feedback > Report a Problem, or submit a suggestion by using Help > Send Feedback > Send a Suggestion.


1 Answers

It has something to do with Code Analysis. It states if a warning had been suppressed by the #Disable Warning pragma. The state of a warning is either active or suppressed if it's enclosed in a pragma.

There is a good explanation on the MSDN forum:

https://social.msdn.microsoft.com/Forums/en-US/1cfd25c9-8bc3-4d70-b463-cfe861e2d78c/what-is-suppression-state-in-vs2015?forum=visualstudiogeneral

like image 125
PeterXX Avatar answered Oct 02 '22 18:10

PeterXX