CA1853:不需要呼叫 'Dictionary.ContainsKey(key)'
屬性 | 值 |
---|---|
規則識別碼 | CA1853 |
標題 | 不必要地呼叫 'Dictionary.ContainsKey(key)' |
類別 | 效能 |
修正程式是中斷或非中斷 | 不中斷 |
引進的版本 | .NET 7 |
預設在 .NET 8 中啟用 | 建議 |
原因
對 Dictionary<TKey,TValue>.Remove(TKey) 的呼叫會使用 對 Dictionary<TKey,TValue>.ContainsKey(TKey) 的呼叫進行防護。
檔案描述
不需要使用 Dictionary.ContainsKey(key)
來保護 Dictionary.Remove(key)
。 Dictionary<TKey,TValue>.Remove(TKey) 已經檢查索引鍵是否存在,如果索引鍵不存在,則不會擲回。
如何修正違規
移除呼叫 Dictionary<TKey,TValue>.ContainsKey(TKey) 的防護程式碼。
範例
下列程式碼片段顯示 CA1853 的違規:
Dictionary<string, int> d = new();
if (d.ContainsKey("name"))
d.Remove("name");
Class C
Shared Sub S()
Dim d As New Dictionary(Of String, Integer)
If d.ContainsKey("name") Then
d.Remove("name")
End If
End Sub
End Class
下列程式碼片段會修正違規:
Dictionary<string, int> d = new();
d.Remove("name");
Class C
Shared Sub S()
Dim d As New Dictionary(Of String, Integer)
d.Remove("name")
End Sub
End Class
隱藏警告的時機
如果效能不相關,則隱藏警告是安全的。
隱藏警告
如果您只想要隱藏單一違規,請將預處理器指示詞新增至原始程式檔以停用,然後重新啟用規則。
#pragma warning disable CA1853
// The code that's violating the rule is on this line.
#pragma warning restore CA1853
若要停用檔案、資料夾或專案的規則,請在組態檔 中將其嚴重性設定為 。 none
[*.{cs,vb}]
dotnet_diagnostic.CA1853.severity = none
如需詳細資訊,請參閱 如何隱藏程式碼分析警告 。