mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 05:27:51 +08:00
23 lines
933 B
C#
23 lines
933 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
namespace osu.Game.Utils
|
|
{
|
|
public static class FormatUtils
|
|
{
|
|
/// <summary>
|
|
/// Turns the provided accuracy into a percentage with 2 decimal places.
|
|
/// </summary>
|
|
/// <param name="accuracy">The accuracy to be formatted</param>
|
|
/// <returns>formatted accuracy in percentage</returns>
|
|
public static string FormatAccuracy(this double accuracy) => $"{accuracy:0.00%}";
|
|
|
|
/// <summary>
|
|
/// Turns the provided accuracy into a percentage with 2 decimal places.
|
|
/// </summary>
|
|
/// <param name="accuracy">The accuracy to be formatted</param>
|
|
/// <returns>formatted accuracy in percentage</returns>
|
|
public static string FormatAccuracy(this decimal accuracy) => $"{accuracy:0.00}%";
|
|
}
|
|
}
|