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

◆ CheckPath()

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

Definition at line 21 of file SyntaxCheck.cs.

22 {
23 if (value == null)
24 {
25 return false;
26 }
27 value = value.TrimStart();
28 if (value.Equals(string.Empty))
29 {
30 return false;
31 }
32 return value.StartsWith("\\\\", StringComparison.Ordinal);
33 }

References System.value.