我在寫一個使用OpenXML讀取excel文件的程序。該文件還包含日期,所以我需要一個識別它們的函數。這裏在stackoverflow我發現這個解決方案:How to distinguish inline numbers from OLE Automation date numbers in OpenXML SpreadSheet?。 我tryed將其應用到我的代碼,但我每次碰到下面的錯誤時間:
我使用下面的代碼通過標記名獲取內容控件。 // Gets content control of the sub table by tag.
var sdtSubTable =
mainPart.Document.Descendants<SdtElement>()
.Where(s => s.SdtProperties.GetFirstChild<Tag().Val.Value
我正在使用EPPlus庫創建Excel報表。 到目前爲止,我已經通過使用此代碼載置於片材的DataTable: string FileName = @"DataSource\sampleData.xml";
var excelDocName = @"C:\Excel\OutExcel.xlsx";
var aFile = new FileInfo(excelDocName);
if (F