Skip to content

Instantly share code, notes, and snippets.

@neon-sunset
Created July 21, 2022 16:43
Show Gist options
  • Save neon-sunset/bba296c77b7c00ad3656b7e7ce60c34c to your computer and use it in GitHub Desktop.
Save neon-sunset/bba296c77b7c00ad3656b7e7ce60c34c to your computer and use it in GitHub Desktop.
Don't do it
using System.Runtime.InteropServices;
var writeable = MemoryMarshal
.AsMemory(false.ToString().AsMemory())
.Span;
"True\0".CopyTo(writeable);
Console.WriteLine((object)false); // Prints 'True'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment