You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.NET Command Line Tools (1.0.0-preview2-003121)
Product Information:
Version: 1.0.0-preview2-003121
Commit SHA-1 hash: 1e9d529bc5
Runtime Environment:
OS Name: Windows
OS Version: 10.0.10586
OS Platform: Windows
RID: win10-x64
VS Code version: 1.4.0
C# Extension version: 1.3.0
Steps to reproduce
Use a multi-dimensional array (e.g. int[,]) as the type for an argument to a function.
Expected behavior
The type and parameter name should be properly colored like other parameters.
Actual behavior
Note that both the type and parameter name for redFish are in the default coloring. I originally suspected the presence of a comma in a type might be the culprit, however the templated argument ham is rendered as expected.
The text was updated successfully, but these errors were encountered:
Fixes (again) dotnet#657 as well as issues brought up in dotnet#670.
- Corrects the order of type, template arguments, nullable type specification and array specifications.
- Ensures array specification support all forms (simple arrays, multi-dimensional arrays, arrays of arrays).
@DustinCampbell, would you be able to re-open this issue while my pull request is being considered? Or would you prefer that I open a new issue and just reference this one? Thanks.
Environment data
dotnet --info
output:VS Code version: 1.4.0
C# Extension version: 1.3.0
Steps to reproduce
int[,]
) as the type for an argument to a function.Expected behavior
The type and parameter name should be properly colored like other parameters.
Actual behavior
Note that both the type and parameter name for
redFish
are in the default coloring. I originally suspected the presence of a comma in a type might be the culprit, however the templated argumentham
is rendered as expected.The text was updated successfully, but these errors were encountered: