我正在从 xml 文档中获取时间戳。现在,我想将时间戳转换为日期格式(2013 年 5 月 13 日)
XmlNodeList cNodes = xncomment.SelectNodes("comment");
foreach (XmlNode node in cNodes)
{
//I'm getting this "1372061224000" in comment-date
string comment_date = node["creation-timestamp"].InnerText;
}
有任何想法吗?提前致谢。