使用Notepad++開發C#,一個復雜點的csscript腳本:
//css_dir ..\..\lib;
//css_ref Geb.Image.dll;
//css_ref Geb.Image.ShapeAnalysis.dll;
//css_ref Geb.Utils.dll;
//css_ref Geb.Utils.WinForm.dll;
//css_co /unsafe;
using System;
using Geb.Image;
unsafe class Program
{
public static void Main()
{
ImageArgb32 img = new ImageArgb32(300,200);
img.Fill(Argb32.RED);
img.ShowDialog();
}
}
// css_dir 設置搜索庫目錄的路徑;
// css_ref 引用dll;
// css_co 設置編譯參數;
