목록숫자 (1)
woong's
Unity 숫자 콤마 표시 하기
Unity 숫자 콤마 표시 하기 C#,Unity 에서 아래와 같이 숫자에 콤마를 넣어서 표시 할수 있습니다. Colored By Color Scripter™1234567891011121314 int score = 12345;Debug.Log(string.Format("{0:n0}", won));Debug.Log(string.Format("{0}", won.ToString("n0"))); ;Debug.Log(string.Format("{0:#,##0}", won));Debug.Log(string.Format("{0}", won.ToString("#,##0"))); //결과//12,345//12,345//12,345//12,345
Develop/Unity
2016. 2. 13. 20:08