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

◆ WriteRawWithCharCheckingNoFlush() [3/3]

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

Definition at line 2466 of file XmlUtf8RawTextWriter.cs.

2467 {
2468 needWriteNewLine = false;
2469 if (count == 0)
2470 {
2471 return -1;
2472 }
2473 fixed (char* ptr = text)
2474 {
2475 char* ptr2 = ptr + index;
2476 char* pSrcEnd = ptr2 + count;
2478 }
2479 }
unsafe int WriteRawWithCharCheckingNoFlush(char *pSrcBegin, char *pSrcEnd, out bool needWriteNewLine)

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