[Refactor] Use collection expressions.

This commit is contained in:
2024-05-01 04:39:38 +01:00
parent f7ca79b09e
commit 134ce7041e
667 changed files with 12936 additions and 13750 deletions

View File

@@ -266,12 +266,7 @@ public sealed partial class Qcow2
_writingStream.Seek((long)(refBlockOffset + refCountBlockIndex), SeekOrigin.Begin);
_writingStream.Write(new byte[]
{
0, 1
},
0,
2);
_writingStream.Write([0, 1], 0, 2);
ErrorMessage = "";