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

◆ EscapeAsciiChar()

static void System.Reflection.AssemblyName.EscapeAsciiChar ( char ch,
char[] to,
ref int pos )
inlinestaticpackage

Definition at line 517 of file AssemblyName.cs.

518 {
519 to[pos++] = '%';
520 to[pos++] = HexConverter.ToCharUpper((int)ch >> 4);
521 to[pos++] = HexConverter.ToCharUpper(ch);
522 }

References System.ch, System.Runtime.Serialization.Dictionary, and System.HexConverter.ToCharUpper().

Referenced by System.Reflection.AssemblyName.EscapeString().