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

◆ IsDirectorySeparator() [3/3]

static bool System.IO.PathInternal.IsDirectorySeparator ( char c)
inlinestaticpackage

Definition at line 403 of file PathInternal.cs.

404 {
405 if (c != '\\')
406 {
407 return c == '/';
408 }
409 return true;
410 }