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

◆ RequiresUnicode()

static bool System.IO.Compression.ZipHelper.RequiresUnicode ( string test)
inlinestaticpackage

Definition at line 7 of file ZipHelper.cs.

8 {
9 foreach (char c in test)
10 {
11 if (c > '~' || c < ' ')
12 {
13 return true;
14 }
15 }
16 return false;
17 }

Referenced by System.IO.Compression.ZipArchiveEntry.EncodeEntryName().