Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
IsValidDriveChar()
[3/3]
static
bool
System.IO.PathInternal.IsValidDriveChar
(
char
value
)
inline
static
package
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
}
System.ExceptionArgument.value
@ value
References
System.value
.
System
IO
PathInternal
Generated by
1.10.0