mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Use UTF-8 string literals whenever possible.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user