12 lines
519 B
C#
12 lines
519 B
C#
using System;
|
|
|
|
public static class MyText
|
|
{
|
|
public static string Get_PercentValueText_100_NoPoint(double _v)
|
|
{
|
|
int percent = (int)Math.Round(_v * 100.0); // double → int 확정 변환
|
|
return percent.ToString() + "%"; // 문자열 변환 후 % 붙이기
|
|
}
|
|
public static string Get_PercentValueText_100(double _v) { return DSUtil.Format("{0:#,##0.##}%", _v * 100d); }
|
|
public static string Get_PercentValueText(double _v) { return DSUtil.Format("{0:#,##0.##}%", _v); }
|
|
} |