Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetNextByte()

unsafe byte System.Text.EncodingCharBuffer.GetNextByte ( )
inlinepackage

Definition at line 101 of file EncodingCharBuffer.cs.

102 {
103 if (_bytes >= _byteEnd)
104 {
105 return 0;
106 }
107 return *(_bytes++);
108 }
unsafe readonly byte * _byteEnd

References System.Text.EncodingCharBuffer._byteEnd, and System.Text.EncodingCharBuffer._bytes.