标签: c#
Debug.Log("Hello there!"); print("Hello there");
这两个语句在控制台上显示相同的输出,所以有什么区别?
答案 0 :(得分:5)
在本机.NET Framework中,您的示例均不存在。最接近的功能是通过System.Diagnostics.Debug或System.Diagnostics.Trace。
System.Diagnostics.Debug
System.Diagnostics.Trace
如果您在谈论Unity,那么行为是相同:
将消息记录到Unity Console(与Debug.Log相同)。
source