MonoTouch/MonoDroid 中的 Debug.WriteLine 等效吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于 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.")
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 themono-stdout
tag.System.Console
output is also copied to the Android Debug Log with themono-stdout
(Console.Out
) andmono-stderr
(Console.Error
) tags.您可以将 System.Console.WriteLine 与 Monotouch 和 Monodroid 一起使用来进行调试输出。
You can use System.Console.WriteLine with both Monotouch and Monodroid for debug output.