C# Convert ToInt32(Double)

Description

Convert ToInt32(Double) converts the value of the specified double-precision floating-point number to an equivalent 32-bit signed integer.

Syntax

Convert.ToInt32(Double) has the following syntax.


public static int ToInt32(
  double value
)

Parameters

Convert.ToInt32(Double) has the following parameters.

  • value - The double-precision floating-point number to convert.

Returns

Convert.ToInt32(Double) method returns value, rounded to the nearest 32-bit signed integer. If value is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.

Example


/* ww w  .j  a va2s .  c om*/
using System;
public class MainClass{
  public static void Main(String[] argv){  
    Console.WriteLine(Convert.ToInt32(123.123D));
  }
}
    

The code above generates the following result.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version