在调试时,如果要在输出窗口中打印字符串,需要调用哪种方法?

在x代码中,我们有NSLog。我们在Visual Studio中有类似的东西吗?

最佳答案

System.Diagnostics.Debug.WriteLine("your string");

09-15 19:09