移除不必要的相等運算子 (IDE0100)
屬性 | 值 |
---|---|
規則識別碼 | IDE0100 |
標題 | 移除不必要的相等運算子 |
類別 | 樣式 |
子類別 | 運算式層級喜好設定 (不必要的程式碼規則) |
適用語言 | C# 和 Visual Basic |
概觀
當比較非常數布林運算式與常數 true
或 false
時,此樣式規則會標記不必要的相等運算子。
選項
此規則沒有相關聯的程式碼樣式選項。
範例
// Code with violations
if (x == true) { }
if (M() != false) { }
// Fixed code
if (x) { }
if (M()) { }
' Code with violations
If x = True Then
End If
If M() <> False Then
End If
' Fixed code
If x Then
End If
If M() Then
End If
隱藏警告
若您只想隱藏單一違規,請將前置處理指示詞新增至來源檔案以停用規則,然後重新啟用規則。
#pragma warning disable IDE0100
// The code that's violating the rule is on this line.
#pragma warning restore IDE0100
若要停用檔案、資料夾或專案的規則,請在組態檔中將其嚴重性設定為 none
。
[*.{cs,vb}]
dotnet_diagnostic.IDE0100.severity = none
若要停用所有程式碼樣式規則,請在組態檔中將類別 Style
的嚴重性設定為 none
。
[*.{cs,vb}]
dotnet_analyzer_diagnostic.category-Style.severity = none
如需詳細資訊,請參閱如何隱藏程式碼分析警告。