[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