Use UTF-8 string literals whenever possible.

This commit is contained in:
2023-09-29 18:27:27 +01:00
parent c673fb6e95
commit 750ae890e7
31 changed files with 105 additions and 266 deletions

View File

@@ -35,13 +35,7 @@ namespace Aaru.DiscImages;
public sealed partial class BlindWrite5
{
/// <summary>"BWT5 STREAM FOOT"</summary>
readonly byte[] _bw5Footer =
{
0x42, 0x57, 0x54, 0x35, 0x20, 0x53, 0x54, 0x52, 0x45, 0x41, 0x4D, 0x20, 0x46, 0x4F, 0x4F, 0x54
};
readonly byte[] _bw5Footer = "BWT5 STREAM FOOT"u8.ToArray();
/// <summary>"BWT5 STREAM SIGN"</summary>
readonly byte[] _bw5Signature =
{
0x42, 0x57, 0x54, 0x35, 0x20, 0x53, 0x54, 0x52, 0x45, 0x41, 0x4D, 0x20, 0x53, 0x49, 0x47, 0x4E
};
readonly byte[] _bw5Signature = "BWT5 STREAM SIGN"u8.ToArray();
}