いろいろ備忘録日記

主に .NET とか Go とか Flutter とか Python絡みのメモを公開しています。

2007-09-09から1日間の記事一覧

IronPython開発入門(@IT)

@ITにて、IronPythonに関する記事が載ってました。 IronPython開発入門 http://www.atmarkit.co.jp/fdotnet/special/ironpython01/ironpython01_01.html とりかえず、メモメモ。 今回は、前編みたいです。 元々、pythonを良く使う人間なのでIronPythonの存在…

IronPythonで参照が必要なDLLの利用方法 (clr, AddReferenceByPartialName)

IronPythonにて、.NET環境で参照を追加する事が必要なDLL (System.Windows.Forms, System.Transactionsなど) を利用するには、以下のようにします。 import clr # # 参照が必要なDLLを参照追加します。 # clr.AddReferenceByPartialName('System.Windows.Fo…