C# 读取excel日期时获取到数字转换成日期

string strDate= DateTime.FromOADate(Convert.ToInt32(data[i][7])).ToString("d");

strDate= DateTime.Parse(strDate).ToString("dd-MMM-yyyy");

原文地址:https://www.cnblogs.com/yangai/p/5752171.html