Update to .NET 8.0 RC1.

This commit is contained in:
2023-09-24 21:49:01 +01:00
parent 8e405c7443
commit 98821a0798
28 changed files with 105 additions and 97 deletions

View File

@@ -227,7 +227,7 @@ public sealed partial class Anex86
}
byte[] hdr = new byte[Marshal.SizeOf<Header>()];
MemoryMarshal.Write(hdr, ref _header);
MemoryMarshal.Write(hdr, in _header);
_writingStream.Seek(0, SeekOrigin.Begin);
_writingStream.Write(hdr, 0, hdr.Length);