Answers for "converte double to int c# int.parse"

C#
3

c# convert double to int

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

C# how to parse double to int

int res = Convert.ToInt32(val);
Posted by: Guest on April-30-2021

C# Answers by Framework

Browse Popular Code Answers by Language