Hope this will help. The guide to convert double to int on C# source code :)

double i = 7.88;
int x = Convert.ToInt32( i );

Tags: , ,

Related Entries