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

◆ WriteUInt64Text()

override void System.Xml.XmlBinaryNodeWriter.WriteUInt64Text ( ulong value)
inline

Definition at line 574 of file XmlBinaryNodeWriter.cs.

575 {
576 if (value <= long.MaxValue)
577 {
578 WriteInt64Text((long)value);
579 }
580 else
581 {
582 WriteTextNodeWithInt64(XmlBinaryNodeType.UInt64Text, (long)value);
583 }
584 }
override void WriteInt64Text(long value)
void WriteTextNodeWithInt64(XmlBinaryNodeType nodeType, long value)

References System.value, System.Xml.XmlBinaryNodeWriter.WriteInt64Text(), and System.Xml.XmlBinaryNodeWriter.WriteTextNodeWithInt64().