No intellisence for Span<T>'s GetPinnableReference method

Options
For following code (install latest version of System.Memory):
Span<byte> buffer = stackalloc byte[1024];
// No intellisence for: buffer.Get...
buffer.GetPinnableReference().Dump();
When I type buffer.Get, there is no intellisence out there(should list a GetPinnableReference), and the code is working.

Comments