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

◆ WriteElementTextBlockNoFlush() [2/3]

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

Definition at line 2121 of file XmlUtf8RawTextWriter.cs.

2122 {
2123 needWriteNewLine = false;
2124 if (count == 0)
2125 {
2126 _contentPos = 0;
2127 return -1;
2128 }
2129 fixed (char* ptr = &chars[index])
2130 {
2131 char* ptr2 = ptr;
2132 char* pSrcEnd = ptr2 + count;
2134 }
2135 }
unsafe int WriteElementTextBlockNoFlush(char *pSrc, char *pSrcEnd, out bool needWriteNewLine)

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