-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Labels
Area-IDEBugIDE-FormatterCode formatter and/or smart indentCode formatter and/or smart indentLanguage-VBhelp wantedThe issue is "up for grabs" - add a comment if you are interested in working on itThe issue is "up for grabs" - add a comment if you are interested in working on it
Milestone
Description
Version Used:
16.6.2
Steps to Reproduce:
- Type the following code in VB.NET
- Note the different casing between variables (camelCase) and property names (PascalCase), see Deconstructed variables code fix should always camelCase variables #23716
Sub NamedTupleCasing(value1 As Integer)
Dim a = (Value1:=1, Value2:=2)
End SubExpected Behavior:
Nothing happens
Actual Behavior:
The first tuple name is auto-formatted in lower case (the same as the function parameter)
Sub NamedTupleCasing(value1 As Integer)
Dim a = (value1:=1, Value2:=2)
End SubMetadata
Metadata
Assignees
Labels
Area-IDEBugIDE-FormatterCode formatter and/or smart indentCode formatter and/or smart indentLanguage-VBhelp wantedThe issue is "up for grabs" - add a comment if you are interested in working on itThe issue is "up for grabs" - add a comment if you are interested in working on it