Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Ucs4Encoding2143.cs
Go to the documentation of this file.
1namespace System.Xml;
2
3internal sealed class Ucs4Encoding2143 : Ucs4Encoding
4{
5 public override string EncodingName => "ucs-4 (order 2143)";
6
7 public override ReadOnlySpan<byte> Preamble => new byte[4] { 0, 0, 255, 254 };
8
10 {
12 }
13
14 public override byte[] GetPreamble()
15 {
16 return new byte[4] { 0, 0, 255, 254 };
17 }
18}
override ReadOnlySpan< byte > Preamble