Improve type parameter display in tooltips
- Dominant language
- F#
- Stars
- 4.3k
- Forks
- 876
- Avg merge
- 4d 22h
- Merged PRs (30d)
- 144
Description
```
///Gets the number of that are in a .
///The type of the current instance () is not supported.
static member Count: int
```

**Describe the solution you'd like**

- The `typeparamref` is ignored.
- ~~There is no non-generic `Vector256`, so~~ the top line should read `property Vector256.Count: int with get`.
- ``Vector256`1`` would look better as `Vector256<'T>`. It also doesn't have the right color.
- C# doesn't fully qualify the type when the latter is visible without qualification. Seem reasonable to me.
- The angle brackets have the wrong color. I looked into this and it's caused by having the entire range of `Vector256` in captured name resolutions. This doesn't happen when the `Vector256 ()` constructor is called.
**Additional context**
VS 17.6.0 Preview 1
Contributor guide
Assessment
This issue has not been assessed yet.