本文介绍了将8位数字转换为DateTime类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将8位数的值转换为DateTime对象.我怎样才能做到这一点?例如,如果用户输入08082010,则应使用C#将其转换为08/08/2010.
I want to convert 8 digit value to a DateTime object. How can I do this? For example, if a user enters 08082010 then it should convert it to 08/08/2010, using C#.
推荐答案
CultureInfo provider = CultureInfo.InvariantCulture;
string dateString = "08082010";
string format = "MMddyyyy";
DateTime result = DateTime.ParseExact(dateString, format, provider);
这将起作用.
这篇关于将8位数字转换为DateTime类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!