AssemblyCSharp.StringUtils.FormatNumberWithColorCode C# (CSharp) 메소드

FormatNumberWithColorCode() 공개 정적인 메소드

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