Section courante

A propos

Section administrative du site

ToInt32

A entier 32 bits
  Convert
C# (C Sharp) System

Syntaxe

public static int ToInt32(bool value);
public static int ToInt32(byte value);
public static int ToInt32(char value);
public static int ToInt32(DateTime value);
public static int ToInt32(decimal value);
public static int ToInt32(double value);
public static int ToInt32(short value);
public static int ToInt32(int value);
public static int ToInt32(long value);
public static int ToInt32(Object value);
public static int ToInt32(sbyte value);
public static int ToInt32(float value);
public static int ToInt32(string value);
public static int ToInt32(ushort value);
public static int ToInt32(uint value);
public static int ToInt32(Object value, IFormatProvider provider);
public static int ToInt32(string value, int fromBase);

Description

Cette méthode permet de convertir la valeur spécifié en entier sur 32 bits.

Exemple

L'exemple suivant permet de convertir la chaîne de caractères 123 en sa valeur entière et l'affiche sur la console :

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. public class Int32Samples
  6. {
  7.  
  8.     static void Main()
  9.     {
  10.         Console.WriteLine(Convert.ToInt32("123"));
  11.     }
  12. }

on obtiendra le résultat suivant :

123

Dernière mise à jour : Mardi, le 26 janvier 2016