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 :
on obtiendra le résultat suivant :
123
Dernière mise à jour : Mardi, le 26 janvier 2016