类似的问题,例如字符串中已经有一个 Parse 小时和 AM/PM 值 - C#,但我需要这样的东西。
string input = "9:00 PM";
DateTime currentTime = DateTime.Now;
// Resultant time like this
currentTime.Add(input) // Just a sudo
如果当前日期时间像 2013 年 9 月 6 日上午 3:18,那么结果将是这样的 2013 年 9 月 6 日下午 9:00 如何实现这一点。提前致谢。