共用方式為


CA2265:不要與 或 比較Span<T> nulldefault

屬性
規則識別碼 CA2264
職稱 不要與 或比較Span<T> nulldefault
類別 使用方式
修正程式是中斷或非中斷 不中斷
預設在 .NET 9 中啟用 作為警告

原因

Span<T>實例會與 或 default進行比較null

檔案描述

比較範圍與 nulldefault 可能不會執行您想要的內容。 default 與常 null 值會隱含地轉換成 Span<T>.Empty

如何修正違規

請移除備援比較,或改為呼叫 IsEmpty ,讓程式代碼更明確。

範例

下列代碼段顯示 CA2265 的兩個違規,以及違規的修正。

Span<int> span = new([1, 2, 3]);
// CA2265 violation.
if (span == null) { }
// CA2265 violation.
if (span == default) { }

// Fixes the violation.
if (span.IsEmpty) { }

隱藏警告的時機

如果您想要比較範圍與空白範圍,則隱藏此警告是安全的。

隱藏警告

如果您只想要隱藏單一違規,請將預處理器指示詞新增至原始程式檔以停用,然後重新啟用規則。

#pragma warning disable CA2265
// The code that's violating the rule is on this line.
#pragma warning restore CA2265

若要停用檔案、資料夾或項目的規則,請在組態檔中將其嚴重性設定為 。none

[*.{cs,vb}]
dotnet_diagnostic.CA2265.severity = none

如需詳細資訊,請參閱 如何隱藏程式代碼分析警告

另請參閱