AssemblyCSharp.StringUtils.FormatNumberWithColorCode C# (CSharp) Method

FormatNumberWithColorCode() public static method

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