Uri.FromHex(Char) メソッド

定義

16 進数の数字に対応する 10 進数値を取得します。

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

パラメーター

digit
Char

変換する 16 進数の数字 (0 ~ 9、a ~ f、A ~ F)。

戻り値

指定した 16 進数に対応する 0 から 15 までの数字。

例外

digit が有効な 16 進数の数字 (0 ~ 9、a ~ f、A ~ F) ではありません。

次の例では、文字が 16 進文字であるかどうかを判別し、16 進文字である場合は、対応する 10 進値をコンソールに書き込みます。

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)

注釈

メソッドは FromHex 、16 進数字 (0 から 9、a-f、A から F) を表す文字を、その 10 進値 (0 から 15) に変換します。 が有効な 16 進数でない場合 digit は、 ArgumentException 例外がスローされます。

適用対象