Closed mulei2023 closed 8 months ago
could not find any usage for transforming a decimal to readable percentage string
eg: 0.48 -->48% 0.3754->37.54%
Workaround: 0.48.Hundreds() + "%"
0.48.Hundreds() + "%"
0.48.ToString("P0");
Will do the same and should do better with localization
Closing as per @hangy
could not find any usage for transforming a decimal to readable percentage string
eg: 0.48 -->48% 0.3754->37.54%