概要
cscの作法、調べてみた。
sqlite、やってみた。
環境
windows10 64bit
サンプルコード
using System;
using System.Text;
using System.IO;
using System.Data.SQLite;
namespace App
{
public class Program {
public static void Main(string[] args) {
SQLiteConnection.CreateFile("db0.sqlite");
Console.WriteLine("ok0");
}
}
}
コンパイル手順
>csc lite0.cs /reference:System.Data.SQLite.dll
以上。