Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PathInternal.cs
Go to the documentation of this file.
1namespace System.IO;
2
3internal static class PathInternal
4{
6 {
7 get
8 {
10 {
11 return StringComparison.OrdinalIgnoreCase;
12 }
13 return StringComparison.Ordinal;
14 }
15 }
16
17 internal static bool IsCaseSensitive
18 {
19 get
20 {
22 {
23 return !OperatingSystem.IsWatchOS();
24 }
25 return false;
26 }
27 }
28}
static bool IsCaseSensitive