Uri.FromHex(Char) Metoda

Definice

Získá desetinnou hodnotu šestnáctkové číslice.

public:
 static int FromHex(char digit);
public static int FromHex (char digit);
static member FromHex : char -> int
Public Shared Function FromHex (digit As Char) As Integer

Parametry

digit
Char

Šestnáctková číslice (0-9, a-f, A-F) pro převod.

Návraty

Int32

Číslo od 0 do 15, které odpovídá zadané šestnáctkové číslici.

Výjimky

digit není platná šestnáctková číslice (0-9, a-f, A-F).

Příklady

Následující příklad určuje, zda je znak šestnáctkovým znakem a pokud ano, zapíše odpovídající desetinnou hodnotu do konzoly.

char testChar = 'e';
if ( Uri::IsHexDigit( testChar ) == true )
{
   Console::WriteLine( "'{0}' is the hexadecimal representation of {1}",
      testChar, Uri::FromHex( testChar ) );
}
else
{
   Console::WriteLine( "'{0}' is not a hex character", testChar );
}

String^ returnString = Uri::HexEscape( testChar );
Console::WriteLine( "The hexadecimal value of '{0}' is {1}", testChar, returnString );
char  testChar = 'e';
if (Uri.IsHexDigit(testChar) == true)
    Console.WriteLine("'{0}' is the hexadecimal representation of {1}", testChar, Uri.FromHex(testChar));
else
    Console.WriteLine("'{0}' is not a hexadecimal character", testChar);

string returnString = Uri.HexEscape(testChar);
Console.WriteLine("The hexadecimal value of '{0}' is {1}", testChar, returnString);
let testChar = 'e'
if Uri.IsHexDigit testChar then
    printfn $"'{testChar}' is the hexadecimal representation of {Uri.FromHex testChar}"
else
    printfn $"'{testChar}' is not a hexadecimal character"

let returnString = Uri.HexEscape testChar
printfn $"The hexadecimal value of '{testChar}' is {returnString}"
Dim testChar As Char = "e"c
If Uri.IsHexDigit(testChar) = True Then
    Console.WriteLine("'{0}' is the hexadecimal representation of {1}", testChar, Uri.FromHex(testChar))
Else
    Console.WriteLine("'{0}' is not a hexadecimal character", testChar)
End If 
Dim returnString As String = Uri.HexEscape(testChar)
Console.WriteLine("The hexadecimal value of '{0}' is {1}", testChar, returnString)

Poznámky

Metoda FromHex převede znak představující šestnáctkovou číslici (0-9, a-f, A-F) na desetinnou hodnotu (0 až 15). Pokud digit není platná šestnáctková číslice, vyvolá ArgumentException se výjimka.

Platí pro