//string.Format을 이용한 2가지 반올림 방법
double value = 5.123456789;
//방법1
string result = string.Format("{0:0.#####0}", value);
//결과값 result = "5.123457"
//7번째 자리의 값을 반올림하여 출력.
//방법2
string result = string.Format("{0:F6}", value);
//결과값 result = "5.123457"
//7번째 자리의 값을 반올림하여 출력.
참조
https://learn.microsoft.com/ko-kr/xamarin/xamarin-forms/app-fundamentals/data-binding/string-formatting
https://jsmun.com/15