nightward/Assets/Scripts/Util/MyText.cs

12 lines
519 B
C#
Raw Normal View History

2025-11-25 19:58:58 +00:00
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); }
}