移除不必要的隱藏運算子 (IDE0080)
屬性 | 值 |
---|---|
規則識別碼 | IDE0080 |
標題 | 移除不必要的隱藏運算子 |
類別 | 樣式 |
子類別 | 運算式層級喜好設定 (不必要的程式碼規則) |
適用語言 | C# |
概觀
此規則會標記不必要的隱藏或 null 容許運算子。 在沒有任何作用的內容中使用的運算子並無存在必要。 例如,使用隱藏運算子 x!
時,它會宣告參考型別的運算式 x
不是 null。 不過,如果使用在其他運算子 (例如 o !is string
的 is 運算子) 的內容中,它就沒有任何作用,而且可以移除。
選項
此規則沒有相關聯的程式碼樣式選項。
範例
// Code with violations
if (o !is string) { }
// Potential fixes:
// 1.
if (o is not string) { }
// 2.
if (!(o is string)) { }
// 3.
if (o is string) { }
隱藏警告
若您只想隱藏單一違規,請將前置處理指示詞新增至來源檔案以停用規則,然後重新啟用規則。
#pragma warning disable IDE0080
// The code that's violating the rule is on this line.
#pragma warning restore IDE0080
若要停用檔案、資料夾或專案的規則,請在組態檔中將其嚴重性設定為 none
。
[*.{cs,vb}]
dotnet_diagnostic.IDE0080.severity = none
若要停用所有程式碼樣式規則,請在組態檔中將類別 Style
的嚴重性設定為 none
。
[*.{cs,vb}]
dotnet_analyzer_diagnostic.category-Style.severity = none
如需詳細資訊,請參閱如何隱藏程式碼分析警告。