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

◆ RawTextNoFlush() [2/2]

unsafe int System.Xml.XmlUtf8RawTextWriter.RawTextNoFlush ( string text,
int index,
int count )
inlineprotectedinherited

Definition at line 2284 of file XmlUtf8RawTextWriter.cs.

2285 {
2286 if (count == 0)
2287 {
2288 return -1;
2289 }
2290 fixed (char* ptr = text)
2291 {
2292 char* ptr2 = ptr + index;
2293 char* pSrcEnd = ptr2 + count;
2294 return RawTextNoFlush(ptr2, pSrcEnd);
2295 }
2296 }
unsafe int RawTextNoFlush(char *pSrcBegin, char *pSrcEnd)

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