Is there a way to suppress warnings in C# similar to Java's @SuppressWarnings annotation?

后端 未结 8 1011
北恋
北恋 2020-12-03 16:59

Is there a way to suppress warnings in C# similar to Java\'s @SuppressWarnings annotation?

Failing that, is there another way to suppress warnings in Visual Studio?<

8条回答
  •  一整个雨季
    2020-12-03 17:27

    You could check #pragma directives: http://msdn.microsoft.com/en-us/library/441722ys(VS.80).aspx.

提交回复
热议问题