MonoTouch/MonoDroid 中的 Debug.WriteLine 等效吗?

发布于 2024-10-11 04:41:39 字数 231 浏览 3 评论 0原文

MonoTouch 或 MonoDroid 的 Debug.WriteLine 等效项是什么?

这是 MonoDroid 的指南: http://monodroid.net/Documentation/Guides/Android_Debug_Log

What's the equivalent to Debug.WriteLine for MonoTouch or MonoDroid?

Here's a guide for MonoDroid:
http://monodroid.net/Documentation/Guides/Android_Debug_Log

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

无妨# 2024-10-18 04:41:39

对于 MonoTouch,Console.WriteLine 将显示在 MonoDevelop 和 iOS 设备的日志中。

对于 MonoDroid,您可以使用 Android.Util.Log 类来记录调试、信息、错误等,您可以从 Android 调试桥的 logcat (adb logcat) 中查看这些信息。一个例子是这样记录信息消息:Android.Util.Log.Info("Barcode", "Scan button pressed.")

For MonoTouch, Console.WriteLine will show up in MonoDevelop and in the logs from your iOS device.

For MonoDroid, you can use the Android.Util.Log class to log debug, info, errors etc that you can view from the Android Debug Bridge's logcat (adb logcat). An example would be something like this to log an info message : Android.Util.Log.Info("Barcode", "Scan button pressed.")

终止放荡 2024-10-18 04:41:39

Mono for Android 提供 Debug.WriteLine( ),就像 MonoTouch 一样,所以我不确定为什么您需要解决方法。

Debug.WriteLine() 在 MonoDevelop 中可见(调试时),并且还使用 mono-stdout 标记复制到 Android 调试日志。 System.Console 输出也会通过 mono-stdout (Console.Out) 和 mono-stderr 复制到 Android 调试日志 (Console.Error) 标记。

Mono for Android provides Debug.WriteLine(), as does MonoTouch, so I'm not sure why you need a workaround.

Debug.WriteLine() is visible within MonoDevelop (when debugging) and is also copied to the Android Debug Log with the mono-stdout tag. System.Console output is also copied to the Android Debug Log with the mono-stdout (Console.Out) and mono-stderr (Console.Error) tags.

眼趣 2024-10-18 04:41:39

您可以将 System.Console.WriteLine 与 Monotouch 和 Monodroid 一起使用来进行调试输出。

You can use System.Console.WriteLine with both Monotouch and Monodroid for debug output.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文