概要
cscの作法、調べてみた。
練習問題、やってみた。
練習問題
closedxmlで九九なxlsxを作れ。
写真
サンプルコード
using System;
using System.IO;
using ClosedXML.Excel;
namespace App
{
class Program {
static void Main(string[] args) {
var filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "Book6.xlsx");
var wb = new XLWorkbook();
var ws = wb.Worksheets.Add("Sheet1");
int i;
int j;
int s;
for (i = 1; i < 10; i++)
{
ws.Cell(1, i + 1).Value = i.ToString();
ws.Cell(1, i + 1).Style.Fill.BackgroundColor = XLColor.Aqua;
ws.Cell(i + 1, 1).Value = i.ToString();
ws.Cell(i + 1, 1).Style.Fill.BackgroundColor = XLColor.Aqua;
}
for (i = 1; i < 10; i++)
{
for (j = 1; j < 10; j++)
{
s = i * j;
ws.Cell(i + 1, j + 1).Value = s.ToString();
}
}
wb.SaveAs(filePath);
Console.WriteLine("ok");
}
}
}
以上。