terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ ThrowUnexpectedToken() [2/2]

void System.Xml.DtdParser.ThrowUnexpectedToken ( int pos,
string expectedToken1,
string expectedToken2 )
inlineprivate

Definition at line 1906 of file DtdParser.cs.

1907 {
1908 string text = this.ParseUnexpectedToken(pos);
1909 int num = this.curPos;
1910 if (expectedToken2 != null)
1911 {
1912 if ((text == null || text != null) && (expectedToken1 == null || expectedToken1 != null) && expectedToken2 != null)
1913 {
1914 return;
1915 }
1916 }
1917 else if ((text == null || text != null) && (expectedToken1 == null || expectedToken1 != null))
1918 {
1919 return;
1920 }
1921 throw new ArrayTypeMismatchException();
1922 }
class f__AnonymousType0<< Count > j__TPar
string ParseUnexpectedToken(int startPos)

References System.Xml.DtdParser.curPos, j__TPar, System.Xml.DtdParser.ParseUnexpectedToken(), and System.text.