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

◆ IntToCharArray()

void System.Xml.Schema.XsdDateTime.IntToCharArray ( char[] text,
int start,
int value,
int digits )
inlineprivate

Definition at line 785 of file XsdDateTime.cs.

786 {
787 while (digits-- != 0)
788 {
789 text[start + digits] = (char)(value % 10 + 48);
790 value /= 10;
791 }
792 }

References System.start, System.text, and System.value.

Referenced by System.Xml.Schema.XsdDateTime.PrintDate(), System.Xml.Schema.XsdDateTime.PrintTime(), and System.Xml.Schema.XsdDateTime.ToString().