2010. 7. 19. 14:56
int aaa = 123456789;
string money = String.Format("{0:#,###}", aaa);
writer.WriteLine(money);
저렇게해서 찍으면...ㅎㅎ
123,456,789 이렇게 나와요..ㅎㅎㅎ
string money = String.Format("{0:#,###}", aaa);
writer.WriteLine(money);
저렇게해서 찍으면...ㅎㅎ
123,456,789 이렇게 나와요..ㅎㅎㅎ