Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ AddByte() [7/7]

bool System.Text.EncodingByteBuffer.AddByte ( byte b1,
byte b2,
int moreBytesExpected )
inlinepackage

Definition at line 94 of file EncodingByteBuffer.cs.

95 {
96 if (AddByte(b1, 1 + moreBytesExpected))
97 {
98 return AddByte(b2, moreBytesExpected);
99 }
100 return false;
101 }
unsafe bool AddByte(byte b, int moreBytesExpected)

References System.Text.EncodingByteBuffer.AddByte().