Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.
もともとPythonを良く使ってたので、IronPythonには大きな期待をしていました。
最近は仕事でも使ってます。
で、こないだ書いたC#のコード。
public class Hoge : BaseClass { public Hoge() : base(“hoge.py”) { } }
ドン引きされたのは言うまでもなく。。。
BaseClassの方はまた今度。
マイナーアップデートとは思えない内容ですが。http://ironpython.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30315
1: import clr
2: clr.AddReference('mscorlib')
3: from System import DateTime
4: print DateTime.Now