Converts int to string in a specified base. : Convert « Data Types « C# / C Sharp






Converts int to string in a specified base.

   

using System;
using System.Globalization;

public class MainClass
{
   public static void Main()
   {
        int[] bases = { 2, 8, 10, 16};
        byte[] numbers = { 0, 12, 113, Byte.MaxValue};
        
        foreach (int baseValue in bases)
        {
           Console.WriteLine("Base {0} conversion:", baseValue);
           foreach (byte number in numbers)
           {
              Console.WriteLine("{0,-5}  -->  0x{1}",number, Convert.ToString(number, baseValue));
           }
        }
   }
}

   
    
    
  








Related examples in the same category

1.Convert string to int
2.Hidden among the To(integral-type) methods are overloads that parse numbers in another base:
3.The source and target types must be one of the "base" types. ChangeType also accepts an optional IFormatProvider argument. Here's an example:
4.Convert string to byte array with for loop
5.Convert byte array to string
6.Convert a decimal to the binary format
7.Convert.ToString Converts the value of a 32-bit signed integer to its equivalent string representation in a specified base.
8.Convert double to bool
9.Convert double to string
10.Convert console input to double
11.Convert double to int
12.Convert double to bool and string
13.Convert string to char
14.Convert what you read from console into int
15.Convert various data types to integer 64
16.Returns an object of the specified type and whose value is equivalent to the specified object.
17.Convert.ChangeType Method (Object, TypeCode, IFormatProvider)
18.Converts a Unicode character array to an 8-bit unsigned integer array.
19.Convert.ToBase64CharArray() and Convert.FromBase64CharArray
20.Converts byte to Boolean
21.Converts decimal to Boolean value.
22.Converts double to Boolean value.
23.Converts short to Boolean value.
24.Converts int to Boolean value.
25.Converts long to Boolean value.
26.Converts string to Boolean
27.Converts Boolean value to byte.
28.Converts Unicode character to byte
29.Converts decimal number to byte
30.Converts double-precision floating-point number to byte
31.Convert string to bool with exception catch
32.Converts a string of length 4 to a 32-bit unsigned integer.
33.Converts a 32-bit unsigned integer to a string of length 4.
34.Conversion between C# string and packed string representation.
35.Convert object value to double or int