Version Used: 16.3 Preview 2
Steps to Reproduce:
static class Extensions {
public static string AsString(this object? data) => data?.ToString() ?? "";
}
class Example {
void Method(object? value) {
value.AsString(); // ← Hover over AsString
}
}
- Use the above code
- Hover over the call to
AsString
Expected Behavior:
(extension) string object?.AsString()
Actual Behavior:
(extension) string object.AsString()
Version Used: 16.3 Preview 2
Steps to Reproduce:
AsStringExpected Behavior:
Actual Behavior: