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

◆ EndsInDirectorySeparator() [4/4]

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

Definition at line 218 of file PathInternal.cs.

219 {
220 if (!string.IsNullOrEmpty(path))
221 {
222 return IsDirectorySeparator(path[path.Length - 1]);
223 }
224 return false;
225 }
static bool IsDirectorySeparator(char c)

References System.IO.PathInternal.IsDirectorySeparator().