다음을 통해 공유


명시적으로 제공된 튜플 이름 사용(IDE0033)

속성
규칙 ID IDE0033
제목 명시적으로 제공된 튜플 이름 사용
범주 스타일
하위 범주 언어 규칙(식 수준 기본 설정)
해당 언어 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

자세한 내용은 방법: 코드 분석 경고 표시 안 함을 참조하세요.

추가 정보