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.
如何将字符串 ="yyyyMMddHHmmss+GMT" 转换为日期时间
示例字符串日期=“20130607000000+1000”
我需要那个转换器
这个表单字符串和日期时间有什么关系
DateTime dt = DateTime.ParseExact( date, "yyyyMMddHHmmsszzz", null, DateTimeStyles.None);
http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx