c# convert double to int

63

c# convert double to int -

double someDouble = 12323.2;
int someInt = (int)someDouble;

Comments

Submit
0 Comments