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

◆ WriteRawWithCharCheckingNoFlush() [3/3]

unsafe int System.Xml.XmlEncodedRawTextWriter.WriteRawWithCharCheckingNoFlush ( string text,
int index,
int count,
out bool needWriteNewLine )
inlineprotectedinherited

Definition at line 2801 of file XmlEncodedRawTextWriter.cs.

2802 {
2803 needWriteNewLine = false;
2804 if (count == 0)
2805 {
2806 return -1;
2807 }
2808 fixed (char* ptr = text)
2809 {
2810 char* ptr2 = ptr + index;
2811 char* pSrcEnd = ptr2 + count;
2813 }
2814 }
unsafe int WriteRawWithCharCheckingNoFlush(char *pSrcBegin, char *pSrcEnd, out bool needWriteNewLine)

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