나는 다음과 같은 VB.NET 코드가 있습니다는 요일 이름을 기반으로 IF 문을 수행
Dim tomorrow = Now.Date.AddDays(1)
Dim weekdayname = CultureInfo.CurrentCulture.DateTimeFormat.GetDayName(tomorrow.DayOfWeek)
If weekdayname = "Thursday" Then
something(happens)
Else
something(happens)
End If
이 오늘은 목요일, 즉 작동하는 것처럼하지 않습니다 내가 제일 먼저 발생하고 싶지만 그것을 그것을 무시하고 두 번째로 간다.
그래서'weekdayname'의 값은 무엇입니까? – sloth
"오늘 목요일"이고 "AddDays (1)"이면 반환되는 값은 "금요일" – tcarvin