开发过程中,需要使用log来记录程序运行状态。
WP7 SDK给出一个在debug模式下打印日志的方法。VS开发中默认就是debug模式,我们要做的就是调用打印日志的方法。
Debug.WriteLine(String logMsg)
使用方法:
引入命名空间:
1: using System.Diagnostics;
然后就可以再想要打印日志的地方使用 Debug.WriteLine方法打印日志,参数是日志内容。
1: Debug.WriteLine("LogText");
想要看到日志需要打开output窗口
测试代码(XNA程序):
给Game1.cs的update方法中添加打印日志语句(测试例子是每秒钟打印1条日志)
- int timeFlag = 0;//程序运行时间标识
- protected override void Update(GameTime gameTime)
- {
- // Allows the game to exit
- if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
- this.Exit();
- // TODO: Add your update logic here
- if ((int)gameTime.TotalGameTime.TotalSeconds == timeFlag)
- {
- Debug.WriteLine("LogText");
- timeFlag++;
- }
- base.Update(gameTime);
- }