Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 VB.net 将 RFC 822 格式的日期转换为 mm/dd/yyyy 的短日期格式。我有一个无法更改其源代码的 Web 应用程序。Web 应用程序允许按月和年对 RSS 提要进行排序。
将不胜感激任何建议或帮助。
使用Date.TryParse将字符串转换为 Date 值,然后将 Date.ToString 与自定义格式字符串一起使用以按照您想要的方式设置格式。