Notepad++を使用して、C钻を開発して、複雑な点のcsscriptスクリプトです.
595 ワード
Notepad++を使用してC钻を開発し、複雑な点のcsscriptスクリプト:
//css_dirは検索ライブラリディレクトリのパスを設定します.
//css_refはdllを引用する
//css_coはコンパイルパラメータを設定します.
//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はコンパイルパラメータを設定します.