I am using Visual Studio 15.5.6 version.
When I create a simple console application project I can't use ReadOnlySpan
or Span
or Memory
.
I set the project to .Net Framework 4.7.1, because in Visual Studio that is the latest version.
Is there anybody using ReadOnlySpan<T>
or Span<T>
?
My purpose is to increase the code work speed.
ReadOnlySpan<char> charSpans="Test Words".AsReadOnlySpan();