Visual Studio 下 Xcode 的 NSlog 等效项
在 Xcode for MAC 下,我使用 NSlog 和 Console 进行调试。 Windows下的Visual Studio下有等效的方法吗?
编辑:为了完整起见,以下是
使用 System.Diagnostics 所需的内容; //命名空间
//写入调试控制台 Debug.WriteLine("这里有东西");
此外,与 Apple 的 NSLog 不同,Debug.Write 仅在应用程序构建为调试模式时输出。
Under Xcode for MAC, I use NSlog and the Console for debugging. Is there an equivalent method under Visual Studio under Windows?
Edit: For completeness, here is what needed
using System.Diagnostics; //namespace
//to write to debug console
Debug.WriteLine("something goes here");
Also, unlike Apple's NSLog, the Debug.Write only output when the app is built as Debug mode.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是 WinAPI
OutputDebugString
函数。I think it's WinAPI
OutputDebugString
function.