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

◆ WriteRawWithCharCheckingNoFlush() [2/3]

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

Definition at line 2451 of file XmlUtf8RawTextWriter.cs.

2452 {
2453 needWriteNewLine = false;
2454 if (count == 0)
2455 {
2456 return -1;
2457 }
2458 fixed (char* ptr = &chars[index])
2459 {
2460 char* ptr2 = ptr;
2461 char* pSrcEnd = ptr2 + count;
2463 }
2464 }
unsafe int WriteRawWithCharCheckingNoFlush(char *pSrcBegin, char *pSrcEnd, out bool needWriteNewLine)

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