Files
2022-10-09 12:22:57 +09:00

19 lines
435 B
C#

namespace Cheongbuk_MegaPark_Key_Management
{
public static class Extends
{
public static string ToThousand(this int value)
{
return $"{value:#,#00}";
}
public static string ToMoney(this int value)
{
return $"{value:#,##0원}";
}
public static string ToPeople(this int value)
{
return $"{value:#,##0명}";
}
}
}