c # - Comment convertir un Timestamp à Date?

Je suis horodatage du document xml.Maintenant, je veux convertir le Timestamp au format de la Date(13-Mai-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;
}

Des idées? Merci à l'avance.

source d'informationauteur user2500094