Version Used:
- VS 2019 16.0.1
- C# Tools 3.0.0-beta4-19170-01+1deafee3682da88bf07d1c18521a99f47446cee8
Steps to Reproduce:
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
var sp = Span<int>.Empty;
var t = sp. // <<- Caret here
Console.WriteLine($"Span.IsValueType: {t.IsValueType}");
}
}
}
Expected Behavior:
Actual Behavior:
Suggests GetType()

And this results in a compile error:

Version Used:
Steps to Reproduce:
Expected Behavior:
Actual Behavior:
Suggests
GetType()And this results in a compile error: