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

◆ NextChar

char System.Globalization.TimeSpanParse.TimeSpanTokenizer.NextChar
getpackage

Definition at line 92 of file TimeSpanParse.cs.

93 {
94 get
95 {
96 int num = ++_pos;
97 if ((uint)num >= (uint)_value.Length)
98 {
99 return '\0';
100 }
101 return _value[num];
102 }
103 }