本文介绍了为什么的Debug.WriteLine输出一些变量,以我的文字的左边?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下的代码,我想知道为什么从线资产名称输出粘变量,我的文字,而不是右边的左边? ?谁能帮助



这:

  System.Diagnostics.Debug .WriteLine(------------ ------------ LoadContent); 
System.Diagnostics.Debug.WriteLine(LoadContent:资产名称:{0},theAsset);
System.Diagnostics.Debug.WriteLine(LoadContent:雪碧X偏移:{0},thisSpriteXCentreOffset);
System.Diagnostics.Debug.WriteLine(LoadContent:雪碧Y偏移:{0},thisSpriteYCentreOffset);



输出这个(粗线是意外的):



解决方案

My guess is that theAsset is a string, and you're therefore invoking Debug.WriteLine(string, string) instead of Debug.WriteLine(string, object[]). The second argument in this case is interpreted as a "category" and prepended to the output.

You might try casting it to an object to invoke the correct overload:

Debug.WriteLine("LoadContent: Asset Name : {0}", (object)theAsset);

这篇关于为什么的Debug.WriteLine输出一些变量,以我的文字的左边?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 13:35