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

◆ IsValidDriveChar() [3/3]

static bool System.IO.PathInternal.IsValidDriveChar ( char value)
inlinestaticpackage

Definition at line 254 of file PathInternal.cs.

255 {
256 if (value < 'A' || value > 'Z')
257 {
258 if (value >= 'a')
259 {
260 return value <= 'z';
261 }
262 return false;
263 }
264 return true;
265 }

References System.value.