Asp.net MVC Console.WriteLine到浏览器 [英] Asp.net mvc Console.WriteLine to browser

查看:938
本文介绍了Asp.net MVC Console.WriteLine到浏览器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我写了的System.Console.WriteLine(我怎样才能看到在浏览器这个debuggin信息);里面的 asp.net mvc4模型 项目。我怎么能看到在浏览器这个bebugging字符串或至少在的Visual Studio 。在Visual Studio的输出窗口无法找到它。也许我需要安装一些插件的的NuGet ...

I wrote System.Console.WriteLine("How can I see this debuggin information in a browser"); inside model of asp.net mvc4 project. How can I see this bebugging string in a browser or at least in visual studio. In output window of visual studio can't find it. Maybe I need to install some plugin from nuget...

推荐答案

Console.WriteLine(...)将不显示。如果你确实需要看到在调试输出,你将不得不使用

Console.WriteLine(...) will not be displayed. If you absolutely need to see output in the debugger, you'll have to use

System.Diagnostics.Debug.WriteLine("This will be displayed in output window");

和查看它在输出窗口。您可以通过给调试打开输出窗口 - >窗口 - >输出

and view it in the Output window. You can open the output window by going to Debug -> Window -> Output:

下面是一个什么样这一切看起来像一个例子:

Here's an example of what this will all look like:

有关进一步的读数,看看这个SO帖子

这篇关于Asp.net MVC Console.WriteLine到浏览器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆