Skip to content

Commit

Permalink
Update ide0033.md (#44492)
Browse files Browse the repository at this point in the history
  • Loading branch information
K4PS3 authored Jan 23, 2025
1 parent d31b6fd commit 9de3b0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/fundamentals/code-analysis/style-rules/ide0033.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Options specify the behavior that you want the rule to enforce. For information
var name = customer.name;

// dotnet_style_explicit_tuple_names = false
(string name, int age) customer = GetCustomer();
(string, int) customer = GetCustomer();
var name = customer.Item1;
```

Expand All @@ -58,7 +58,7 @@ 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 customer As (String, Integer) = GetCustomer()
Dim name = customer.Item1
```

Expand Down

0 comments on commit 9de3b0f

Please sign in to comment.