We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d3563f commit c798273Copy full SHA for c798273
1 file changed
_pages/1500_MaintainabilityGuidelines.md
@@ -117,8 +117,8 @@ Don't use confusing constructs like the one below:
117
if ((items[0] is string text) || (items[1] is Action action))
118
{
119
}
120
-
121
- (int a, int b) = M();
+
+ (string name, string value) = SplitNameValuePair(text);
122
123
### <a name="av1523"></a> Favor object and collection initializers over separate statements (AV1523) 
124
Instead of:
0 commit comments