09/06/22 12:17:42
>>877
なるほど……。そんな感じでやってみようかと思ったらStringBuilderを見つけて、
そっちで書いてみたら簡単だったのでコード片を載せておく。
IronPython.Runtime.List python_result;
var builder = new StringBuilder();
foreach(var e in python_result)
{
builder.Append(","+ e.ToString());
}
Console.WriteLine(builder.ToString().Substring(1));
>>878
対象がIronPython.Runtime.ListなんでConvertAllは使えないっぽいね……。