Skip to content

Commit 9de3b0f

Browse files
authored
Update ide0033.md (#44492)
1 parent d31b6fd commit 9de3b0f

File tree

1 file changed

+2
-2
lines changed
  • docs/fundamentals/code-analysis/style-rules

1 file changed

+2
-2
lines changed

docs/fundamentals/code-analysis/style-rules/ide0033.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Options specify the behavior that you want the rule to enforce. For information
4848
var name = customer.name;
4949

5050
// dotnet_style_explicit_tuple_names = false
51-
(string name, int age) customer = GetCustomer();
51+
(string, int) customer = GetCustomer();
5252
var name = customer.Item1;
5353
```
5454

@@ -58,7 +58,7 @@ Dim customer As (name As String, age As Integer) = GetCustomer()
5858
Dim name = customer.name
5959

6060
' dotnet_style_explicit_tuple_names = false
61-
Dim customer As (name As String, age As Integer) = GetCustomer()
61+
Dim customer As (String, Integer) = GetCustomer()
6262
Dim name = customer.Item1
6363
```
6464

0 commit comments

Comments
 (0)