© 2026 Hedgehog Software, LLC
dotnet build
/unsafe
dotnet build /unsafe
using System; namespace thing; class Program { public unsafe static void Main(string[] a) { int i = 1000000000; Console.WriteLine(*(float*)&i); } }