使用显式提供的元组名称 (IDE0033)

属性
规则 ID IDE0033
标题 使用显式提供的元组名称
类别 Style
Subcategory 语言规则(表达式级首选项)
适用的语言 C# 和 Visual Basic
选项 dotnet_style_explicit_tuple_names

概述

此样式规则涉及在访问元组字段时使用显式元组名称,而不使用隐式“ItemX”属性。

选项

选项指定你希望规则强制实施的行为。 若要了解如何配置选项,请参阅选项格式

dotnet_style_explicit_tuple_names

属性 说明
选项名称 dotnet_style_explicit_tuple_names
选项值 true 比起 ItemX 属性更倾向元祖名称
false 比起元组名称更倾向 ItemX 属性
默认选项值 true
// dotnet_style_explicit_tuple_names = true
(string name, int age) customer = GetCustomer();
var name = customer.name;

// dotnet_style_explicit_tuple_names = false
(string name, int age) customer = GetCustomer();
var name = customer.Item1;
 ' dotnet_style_explicit_tuple_names = true
Dim customer As (name As String, age As Integer) = GetCustomer()
Dim name = customer.name

' dotnet_style_explicit_tuple_names = false
Dim customer As (name As String, age As Integer) = GetCustomer()
Dim name = customer.Item1

抑制警告

如果只想抑制单个冲突,请将预处理器指令添加到源文件以禁用该规则,然后重新启用该规则。

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

若要对文件、文件夹或项目禁用该规则,请在配置文件中将其严重性设置为 none

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

若要禁用所有代码样式规则,请在配置文件中将类别 Style 的严重性设置为 none

[*.{cs,vb}]
dotnet_analyzer_diagnostic.category-Style.severity = none

有关详细信息,请参阅如何禁止显示代码分析警告

另请参阅