System.Yaml.UriEncoding.IntToHex C# (CSharp) Méthode

IntToHex() static private méthode

static private IntToHex ( int c ) : string
c int
Résultat string
        static string IntToHex(int c)
        {
            return new string(new char[] {
                '%', intToHex[c>>4], intToHex[c&0x0f],
            });
        }

Same methods

UriEncoding::IntToHex ( int c1, int c2 ) : string
UriEncoding::IntToHex ( int c1, int c2, int c3 ) : string