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

◆ PushCurr()

void System.Xml.BitStack.PushCurr ( )
inlineprivate

Definition at line 41 of file BitStack.cs.

42 {
43 if (_bitStack == null)
44 {
45 _bitStack = new uint[16];
46 }
48 _curr = 1u;
49 int num = _bitStack.Length;
50 if (_stackPos >= num)
51 {
52 uint[] array = new uint[2 * num];
53 Array.Copy(_bitStack, array, num);
55 }
56 }

References System.Xml.BitStack._bitStack, System.Xml.BitStack._curr, System.Xml.BitStack._stackPos, System.array, System.Array.Copy(), and System.Xml.Dictionary.

Referenced by System.Xml.BitStack.PushBit().