graphics.hatenablog.com

技術系テクニカルアーティストのあれこれ

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

C# をランタイムコンパイルしてPythonとかRubyの代わりに使う

var p = new Process(); var pi = p.StartInfo; pi.FileName = "python.exe"; pi.Arguments = "test.py"; pi.UseShellExecute = false; pi.CreateNoWindow = true; pi.RedirectStandardOutput = true; pi.RedirectStandardError = true; p.Start(); みたいな…