在實際環境中進行測試
在生產環境中進行無水印測試。
無論在何處需要,它都能正常運作。
功能齊全的產品
獲得 30 天完整功能產品試用期。
幾分鐘就能安裝運作。
24/5 技術支持
產品試用期間,您可以隨時聯絡我們的支援工程團隊。
using IronXL;
using System;
using System.Linq;
// Supported for XLSX, XLS, XLSM, XLTX, CSV and TSV
WorkBook workBook = WorkBook.Load("sample.xlsx");
// Select worksheet at index 0
WorkSheet workSheet = workBook.WorkSheets[0];
// Get any existing worksheet
WorkSheet firstSheet = workBook.DefaultWorkSheet;
// Select a cell and return the converted value
int cellValue = workSheet["A2"].IntValue;
// Read from ranges of cells elegantly.
foreach (var cell in workSheet["A2:A10"])
{
Console.WriteLine("Cell {0} has value '{1}'", cell.AddressString, cell.Text);
}
// Calculate aggregate values such as Min, Max and Sum
decimal sum = workSheet["A2:A10"].Sum();
// Linq compatible
decimal max = workSheet["A2:A10"].Max(c => c.DecimalValue);Install-Package IronXL.Excel
專為運行在.NET 10、9、8、7、6、5(Core、Standard 或 Framework)上的C#、F# 和 VB.NET設計
您的試用金鑰應該在郵件中。
如果不是,請聯繫
support@ironsoftware.com