42
loading...
This website collects cookies to deliver better user experience
using System;
namespace convert_float_to_int
{
class Program
{
static void Main(string[] args)
{
float f = 10.2f;
int i = (int)f;
Console.WriteLine("Converted float {0} to int {1}", f, i);
}
}
}
( OUTPUT )
Converted float 10.2 to int 10
float myFloat = 3.5F;
int myInt = Convert.toInt32(myFloat);