ライブ環境でテストする
ウォーターマークなしで本番環境でテスト。
必要な場所で動作します。
完全機能の製品
完全に機能する製品を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
C#, F#, & VB.NET 用に設計されており、.NET 10, 9, 8, 7, 6, 5, Core, Standard, または Framework 上で動作します
試用キーはメールに届いているはずです。
もし届いていない場合は
support@ironsoftware.comにご連絡ください。