Skip to content

Instantly share code, notes, and snippets.

@kolosovpetro
Created March 14, 2022 17:00
Show Gist options
  • Select an option

  • Save kolosovpetro/b1ba0ae334f2b454dcb3ee17f717cc78 to your computer and use it in GitHub Desktop.

Select an option

Save kolosovpetro/b1ba0ae334f2b454dcb3ee17f717cc78 to your computer and use it in GitHub Desktop.
// See https://aka.ms/new-console-template for more information
using System.Runtime.InteropServices;
const string s = "hello world.";
Span<char> span = MemoryMarshal.CreateSpan(ref MemoryMarshal.GetReference(s.AsSpan()), s.Length);
span[11] = '!';
Console.WriteLine(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment