Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
BytesWithOffset.cs
Go to the documentation of this file.
1namespace System.Xml;
2
3internal readonly struct BytesWithOffset
4{
5 private readonly byte[] _bytes;
6
7 private readonly int _offset;
8
9 public byte[] Bytes => _bytes;
10
11 public int Offset => _offset;
12
13 public BytesWithOffset(byte[] bytes, int offset)
14 {
15 _bytes = bytes;
17 }
18}
BytesWithOffset(byte[] bytes, int offset)