首页 > 编程 > C# > 正文

自定义时间格式转换代码分享

2020-01-24 02:58:04
字体:
来源:转载
供稿:网友

复制代码 代码如下:

/// <summary>
        /// 将日期字符串转换为日期类型
        /// </summary>
        /// <param name="strDateTime">形如"2012年5月14日"的日期字符串</param>
        private DateTime ParseDateTime(string strDateTime)
        {
            ////Like: string strDateTime = "2012年5月14日";
            DateTime dateTime;
            if (DateTime.TryParseExact(strDateTime, "yyyy年M月d日", new System.Globalization.CultureInfo("en-US"), System.Globalization.DateTimeStyles.AssumeLocal, out dateTime))
            {
                return dateTime;
            }
            else
            {
                return DateTime.Today;
            }
        }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表