어떤 특정 날짜에서 1일을 더한날이 필요해서 이런식으로 구현함
하지만 작동하지 않음
not working
ex)
DateTime tmp = StartDay;
tmp.AddDays(1);
Debug.Log("endDayafter:" + tmp);
working
ex)
DateTime tmp = StartDay;
tmp = tmp.AddDays(1);
Debug.Log("endDayafter:" + tmp);
댓글 없음:
댓글 쓰기