AssemblyCSharp.StringUtils.FormatNumberWithColorCode C# (CSharp) Méthode

FormatNumberWithColorCode() public static méthode

public static FormatNumberWithColorCode ( int value, string colorCode ) : string
value int
colorCode string
Résultat string
        public static string FormatNumberWithColorCode(int value, string colorCode)
        {
            return String.Format("<color=" + colorCode + ">" + FormatNumber(value) + "</color>");
        }