8 ビット符号なし整数値を、指定した基数で表される等価な String 形式に変換します。
Overloads Public Shared Function ToString( _
ByVal value As Byte, _ ByVal toBase As Integer _) As String
[C#]
public static string ToString(bytevalue,inttoBase);
[C++]
public: static String* ToString(unsigned charvalue,inttoBase);
[JScript]
public static function ToString(
value : Byte,toBase : int) : String;
パラメータ
- value
8 ビット符号なし整数。 - toBase
戻り値の基数。これは 2、8、10、または 16 である必要があります。
戻り値
基数 toBase での value の String 形式。
例外
例外の種類 | 条件 |
---|---|
ArgumentException | toBase が 2、8、10、または 16 ではありません。 |
使用例
[Visual Basic, C#, C++] ToString メソッドを使用し、このメソッドがサポートする基数に従って、複数の Byte の値を String に変換するコード例を次に示します。
' Example of the Convert.ToString( Byte, Integer ) method.
Imports System
Imports Microsoft.VisualBasic
Module ConvertRadixByteDemo
Sub RunToStringDemo( )
Dim values as Byte( ) = { _
Byte.MinValue, _
13, _
Byte.MaxValue }
Dim radices as Integer( ) = { 2, 8, 10, 16 }
' Iterate through the values array.
Dim value as Byte
For Each value in values
' Iterate through the radices.
Dim radix as Integer
For Each radix in radices
' Convert a value with a radix.
Dim valueString As String = _
Convert.ToString( value, radix )
Console.WriteLine( "{0,7} {1,3} {2}", _
value, radix, valueString )
Next radix
Next value
End Sub
Sub Main( )
Console.WriteLine( _
"This example of Convert.ToString( Byte, Integer ) " & _
"generates " & vbCrLf & "the following output. It " & _
"converts several Byte values to " & vbCrLf & "strings " & _
"using the radixes supported by the method." )
Console.WriteLine( vbCrLf & _
" Value Radix String" & vbCrLf & _
" ----- ----- ------" )
RunToStringDemo( )
End Sub
End Module
' This example of Convert.ToString( Byte, Integer ) generates
' the following output. It converts several Byte values to
' strings using the radixes supported by the method.
'
' Value Radix String
' ----- ----- ------
' 0 2 0
' 0 8 0
' 0 10 0
' 0 16 0
' 13 2 1101
' 13 8 15
' 13 10 13
' 13 16 d
' 255 2 11111111
' 255 8 377
' 255 10 255
' 255 16 ff
[C#]
// Example of the Convert.ToString( byte, int ) method.
using System;
class ConvertRadixByteDemo
{
static void RunToStringDemo( )
{
byte[ ] values = {
byte.MinValue,
13,
byte.MaxValue };
int[ ] radices = { 2, 8, 10, 16 };
// Iterate through the values array.
foreach( byte value in values )
{
// Iterate through the radices.
foreach( int radix in radices )
{
// Convert a value with a radix.
string valueString =
Convert.ToString( value, radix );
Console.WriteLine( "{0,7} {1,3} {2}",
value, radix, valueString );
}
}
}
static void Main( )
{
Console.WriteLine(
"This example of Convert.ToString( byte, int ) " +
"generates \nthe following output. It converts several " +
"byte values to \nstrings using the radixes supported " +
"by the method." );
Console.WriteLine(
"\n Value Radix String" +
"\n ----- ----- ------" );
RunToStringDemo( );
}
}
/*
This example of Convert.ToString( byte, int ) generates
the following output. It converts several byte values to
strings using the radixes supported by the method.
Value Radix String
----- ----- ------
0 2 0
0 8 0
0 10 0
0 16 0
13 2 1101
13 8 15
13 10 13
13 16 d
255 2 11111111
255 8 377
255 10 255
255 16 ff
*/
[C++]
// Example of the Convert::ToString( unsigned char, int ) method.
#using <mscorlib.dll>
using namespace System;
using namespace System::Collections;
void RunToStringDemo( )
{
unsigned char values __gc [ ] = {
Byte::MinValue,
13,
Byte::MaxValue };
int radices[ 4 ] = { 2, 8, 10, 16 };
// Implement foreach( unsigned char value in values ).
IEnumerator* myEnum = values->GetEnumerator( );
while( myEnum->MoveNext( ) )
{
unsigned char value = Convert::ToByte( myEnum->Current );
// Iterate through the radices.
for( int i = 0; i < 4; i++ )
{
// Convert a value with a radix.
int radix = radices[ i ];
String* valueString =
Convert::ToString( value, radix );
Console::WriteLine( S"{0,7} {1,3} {2}",
__box( value ), __box( radix ), valueString );
}
}
}
void main( )
{
Console::WriteLine(
S"This example of Convert::ToString( unsigned char, int ) "
S"generates \nthe following output. It converts several "
S"unsigned char values to \nstrings using the radixes "
S"supported by the method." );
Console::WriteLine(
S"\n Value Radix String"
S"\n ----- ----- ------" );
RunToStringDemo( );
}
/*
This example of Convert::ToString( unsigned char, int ) generates
the following output. It converts several unsigned char values to
strings using the radixes supported by the method.
Value Radix String
----- ----- ------
0 2 0
0 8 0
0 10 0
0 16 0
13 2 1101
13 8 15
13 10 13
13 16 d
255 2 11111111
255 8 377
255 10 255
255 16 ff
*/
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
Convert クラス | Convert メンバ | System 名前空間 | Convert.ToString オーバーロードの一覧