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

◆ IsSpaceReplacingChar()

static bool System.Number.IsSpaceReplacingChar ( char c)
inlinestaticprivate

Definition at line 5857 of file Number.cs.

5858 {
5859 if (c != '\u00a0')
5860 {
5861 return c == '\u202f';
5862 }
5863 return true;
5864 }

Referenced by System.Number.MatchChars().