本地正常, 服务器不正常
System.DateTime t = Convert.ToDateTime("2009\11\6 星期五 8:57:53");
代码
本地浏览
服务器浏览
服务器Framework版本
本地版本
本地正常, 服务器不正常
System.DateTime t = Convert.ToDateTime("2009\11\6 星期五 8:57:53");
代码
本地浏览
服务器浏览
服务器Framework版本
本地版本
这样肯定能解析,而且和系统设置无关了。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace Q690391
{
class Program
{
static void Main(string[] args)
{
string s = "2009\\11\\6 星期五 8:57:53";
string sf = string.Format("{0:D4}-{1:D2}-{2:D2} {3:D2}:{4:D2}:{5:D2}", Regex.Matches(s, "\\d+").Cast<Match>().Select(x => (object)int.Parse(x.Value)).ToArray());
DateTime dt = DateTime.ParseExact(sf, "yyyy-MM-dd hh:mm:ss", null);
Console.WriteLine(dt);
}
}
}