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

◆ ContainsNoWhitespaceOrQuotes() [2/2]

static bool System.PasteArguments.ContainsNoWhitespaceOrQuotes ( string s)
inlinestaticprivate

Definition at line 62 of file PasteArguments.cs.

63 {
64 foreach (char c in s)
65 {
66 if (char.IsWhiteSpace(c) || c == '"')
67 {
68 return false;
69 }
70 }
71 return true;
72 }

References System.s.