본문 바로가기

DEV/ASP.NET

[C#]숫자 콤마 찍기

반응형

소스

int currency= 123456890;
Console.WriteLine(string.Format("{0:n0}", currency));
Console.WriteLine(string.Format("{0}", currency.ToString("n0"))); ;
Console.WriteLine(string.Format("{0:#,##0}", currency));
Console.WriteLine(string.Format("{0}", currency.ToString("#,##0")));


실행결과

//결과
//123,456,890
//123,456,890
//123,456,890
//123,456,890


반응형

'DEV > ASP.NET' 카테고리의 다른 글

[C#] 두 날짜의 일 수 차이 구하기  (0) 2017.09.18
[C#] DateTime.CompareTo  (0) 2017.09.15
[C#] DataRow[]를 DataTable로 변환하기  (0) 2017.09.12
[C#] DataTable의 데이터를 검색 또는 정렬하기  (0) 2017.09.11
MS Chart 설치  (0) 2017.03.15