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

◆ EndOfFile

bool System.Xml.XmlBufferReader.EndOfFile
get

Definition at line 50 of file XmlBufferReader.cs.

51 {
52 get
53 {
54 if (_offset == _offsetMax)
55 {
56 return !TryEnsureByte();
57 }
58 return false;
59 }
60 }