Answers for "double to int c#"

C#
3

double to int c#

Convert.ToInt32(8.6)
Posted by: Guest on March-23-2020
3

c# convert double to int

double someDouble = 12323.2;
int someInt = (int)someDouble;
Posted by: Guest on July-02-2020

C# Answers by Framework

Browse Popular Code Answers by Language