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

◆ UnsafeDecode()

unsafe int System.Xml.UniqueId.UnsafeDecode ( short * char2val,
char ch1,
char ch2 )
inlineprivate

Definition at line 155 of file UniqueId.cs.

156 {
157 if ((ch1 | ch2) >= 128)
158 {
159 return 256;
160 }
161 return char2val[(int)ch1] | char2val[128 + ch2];
162 }

References System.Xml.Dictionary.

Referenced by System.Xml.UniqueId.UnsafeParse().