Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个愚蠢的问题,我觉得问起来很愚蠢,但我自己无法让它发挥作用。
我有一个完整的调试数据列表,我想在标签中呈现到屏幕上,但是当我在 OnGUI 函数中尝试以下调用时(outputContent 是我传递给数据的标签的名称):
debugList.ForEach(item => outputContent.text);
我收到以下错误:
只有赋值、调用、递增、递减和新对象表达式可以用作语句
如何从列表中获取数据以显示在标签中?
有可能是这样的吗?
debugList.ForEach(item => outputContent.text += item);