We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d31b6fd commit 9de3b0fCopy full SHA for 9de3b0f
docs/fundamentals/code-analysis/style-rules/ide0033.md
@@ -48,7 +48,7 @@ Options specify the behavior that you want the rule to enforce. For information
48
var name = customer.name;
49
50
// dotnet_style_explicit_tuple_names = false
51
-(string name, int age) customer = GetCustomer();
+(string, int) customer = GetCustomer();
52
var name = customer.Item1;
53
```
54
@@ -58,7 +58,7 @@ Dim customer As (name As String, age As Integer) = GetCustomer()
58
Dim name = customer.name
59
60
' dotnet_style_explicit_tuple_names = false
61
-Dim customer As (name As String, age As Integer) = GetCustomer()
+Dim customer As (String, Integer) = GetCustomer()
62
Dim name = customer.Item1
63
64
0 commit comments