我一直用它作为查看输出的方法吗?
Debug.WriteLine("abc");
现在我想发送一下这个输出:
Debug.WriteLine(result.examples);
其中示例是List
但我知道Debug.Writeline只接受一个字符串
答案 0 :(得分:4)
您可以使用string.Join
形成,
(或任何分隔符),将其分隔为string
Debug.WriteLine(string.Join(",", result.examples));
答案 1 :(得分:1)
试试这个:
Debug.WriteLine(String.Join(Environment.NewLine, result.examples));