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

◆ IsExtended() [3/3]

static bool System.IO.PathInternal.IsExtended ( string path)
inlinestaticpackage

Definition at line 95 of file PathInternal.cs.

96 {
97 if (path.Length >= 4 && path[0] == '\\' && (path[1] == '\\' || path[1] == '?') && path[2] == '?')
98 {
99 return path[3] == '\\';
100 }
101 return false;
102 }