Source/C#_source(2)
-
[C#_source] 숫자 3자리 마다 (,) 콤마
int won = 123456890;Console.WriteLine(string.Format("{0:n0}", won));Console.WriteLine(string.Format("{0}", won.ToString("n0"))); ;Console.WriteLine(string.Format("{0:#,##0}", won));Console.WriteLine(string.Format("{0}", won.ToString("#,##0"))); //결과//123,456,890//123,456,890//123,456,890//123,456,890 출처 : http://ramses8.tistory.com/397
2016.04.19 -
[C#_source] 날짜와 시간 따로 구해서 더하기
How to combine string Date and string time into DateTime 날짜와 시간 따로 구해서 더하는 방법 DateTime dt= DateTime.Now; // ## 오늘 날짜 string strDate = dt.ToString("yyyy-MM-dd", CultureInfo.InvariantCulture); // ## 오늘 날짜 년,월,일 string strTime = "09:00:00.000"; // ## 지정할 시간 값 dt = Convert.ToDateTime(strDate) + Convert.ToDateTime(strTime).TimeOfDay; // ## DateTime형변환 후 더한 값을 DateTime 변수인 dt에 넣습니다. txt2.Text = dt.ToS..
2016.04.19