最佳答案
我想将时间跨度转换为日期时间。如何做到这一点?
我在谷歌上找到了一种方法:
DateTime dt;
TimeSpan ts="XXX";
//We can covnert 'ts' to 'dt' like this:
dt= Convert.ToDateTime(ts.ToString());
还有别的办法吗?