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

◆ ContainsWhiteSpace()

static bool System.Linq.Expressions.DebugViewWriter.ContainsWhiteSpace ( string name)
inlinestaticprivate

Definition at line 1141 of file DebugViewWriter.cs.

1142 {
1143 foreach (char c in name)
1144 {
1145 if (char.IsWhiteSpace(c))
1146 {
1147 return true;
1148 }
1149 }
1150 return false;
1151 }

Referenced by System.Linq.Expressions.DebugViewWriter.GetDisplayName().