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

◆ CreateCharactersAllowedInQuotedStrings()

static bool[] System.Net.Mime.MailBnfHelper.CreateCharactersAllowedInQuotedStrings ( )
inlinestaticprivate

Definition at line 62 of file MailBnfHelper.cs.

63 {
64 bool[] array = new bool[128];
65 for (int i = 1; i <= 9; i++)
66 {
67 array[i] = true;
68 }
69 array[11] = true;
70 array[12] = true;
71 for (int j = 14; j <= 33; j++)
72 {
73 array[j] = true;
74 }
75 for (int k = 35; k <= 91; k++)
76 {
77 array[k] = true;
78 }
79 for (int l = 93; l <= 127; l++)
80 {
81 array[l] = true;
82 }
83 return array;
84 }

References System.array.