how do integer round numbers c# code example
Example 1: c# round up
double resultA = Math.Ceiling(1.02); //Mathf.Ceil for Unity
int resultB = Mathf.CeilToInt(1.02); //Unity Only
Example 2: round to int 32 c#
Convert.Toint64(number)
double resultA = Math.Ceiling(1.02); //Mathf.Ceil for Unity
int resultB = Mathf.CeilToInt(1.02); //Unity Only
Convert.Toint64(number)