I have a time interval, which is displayed as such: 7.43053333333333. My goal is to simply display it as 7.43.
How to truncate the second value after the decimal place. I tried using Math.Roundinstead of truncating, but it will just return7
source
share