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

◆ WriteRawWithCharCheckingNoFlush() [2/3]

unsafe int System.Xml.XmlEncodedRawTextWriter.WriteRawWithCharCheckingNoFlush ( char[] chars,
int index,
int count,
out bool needWriteNewLine )
inlineprotectedinherited

Definition at line 2786 of file XmlEncodedRawTextWriter.cs.

2787 {
2788 needWriteNewLine = false;
2789 if (count == 0)
2790 {
2791 return -1;
2792 }
2793 fixed (char* ptr = &chars[index])
2794 {
2795 char* ptr2 = ptr;
2796 char* pSrcEnd = ptr2 + count;
2798 }
2799 }
unsafe int WriteRawWithCharCheckingNoFlush(char *pSrcBegin, char *pSrcEnd, out bool needWriteNewLine)

References System.chars, System.count, System.Xml.Dictionary, System.index, and System.Xml.XmlEncodedRawTextWriter.WriteRawWithCharCheckingNoFlush().