エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
[C#]Excelファイルをさくっと作ろう
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Syste... using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.OleDb; using System.Data; namespace Excel.ADO.Net { class Program { static void Main(string[] args) { // 適当なファイル名を入力 string path = Console.ReadLine(); using (var conn = new OleDbConnection( @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + path + ";Extended Properties=Excel 8.0;")) { conn.Open(
2008/01/16 リンク