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

◆ CheckMachineName()

static bool System.ComponentModel.SyntaxCheck.CheckMachineName ( string value)
inlinestatic

Definition at line 7 of file SyntaxCheck.cs.

8 {
9 if (value == null)
10 {
11 return false;
12 }
13 value = value.Trim();
14 if (value.Equals(string.Empty))
15 {
16 return false;
17 }
18 return !value.Contains('\\');
19 }

References System.value.