#pragma warning disable & restore

后端 未结 3 619
独厮守ぢ
独厮守ぢ 2020-12-15 04:11

I have used c# to create a First Project. I have many warning errors and all these warning errors are to be single Error(Internal compiler error. See the console log for mo

3条回答
  •  悲&欢浪女
    2020-12-15 04:25

    At the very least you should be specific about which warnings you've deliberately chosen to ignore. That way, if later maintenance introduces a 'new' warning/issue that you should be made aware of, the warning about the newly-introduced error won't be suppressed by your blanket pragma warning disable directive.

    You can get the warning numbers pertaining to the build issues you've decided to ignore from the build Output window in Visual Studio. They're usually labelled "Warning CS0168...." or similar. In which case you can specifically target just the those error(s) you've decided to ignore like so:

    #pragma warning disable 168, 3021
    
        //Your code that generates warnings CS0168 and CS3021 here
    
    #pragma warning restore 168, 3021
    

提交回复
热议问题