Convert.ToString Converts the value of a 32-bit signed integer to its equivalent string representation in a specified base. : Convert « Data Types « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# / C Sharp » Data Types » ConvertScreenshots 
Convert.ToString Converts the value of a 32-bit signed integer to its equivalent string representation in a specified base.
    
using System;
public class MainClass
{
    public static void Main()
    {
        int[] bases = 281016 };
        int[] numbers = Int32.MinValue, -123, -12345, -181219, Int32.MaxValue };

        foreach (int baseValue in bases)
        {
            Console.WriteLine("Base {0} conversion:", baseValue);
            foreach (int number in numbers)
            {
                Console.WriteLine("   {0,-15}  -->  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 double to bool
8.Convert double to string
9.Convert console input to double
10.Converts int to string in a specified base.
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.