我有一个string
值为16:00:00我想将其转换为时间格式 hh:mm:ss ..我不想要日期
TimeSpan.ParseExact(splitLine[6], "hh:mm:ss", null);
抛出 system.time 无法转换为 system.date 时间的错误
DateTime.ParseExact(splitLine[6], "hh:mm:ss", CultureInfo.InvariantCulture);
通过自动添加今天的日期返回日期时间。
我只想要时间格式。
请帮我。