Home
Options

No intellisence for Span<T>'s GetPinnableReference method

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

Sign In or Register to comment.