本文介绍了如何在剃刀文件中使用 Debug.Writeline?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在剃刀网页中使用 Debug.Writeline,但我不断收到无效参数消息.
I'm trying to use Debug.Writeline in a razor web page and I keep getting invalid arguments messages.
@System.Diagnostics.Debug.WriteLine("asdf");
@System.Diagnostics.Debug.WriteLine("asdf");
返回
CS1502:System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)"的最佳重载方法匹配有一些无效参数
CS1502: The best overloaded method match for 'System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)' has some invalid arguments
推荐答案
Debug.WriteLine
不返回值,因此无法使用 @
写出.试试:
Debug.WriteLine
does not return a value so it can't be written out using @
. Try:
@{System.Diagnostics.Debug.WriteLine("asdf");}
这篇关于如何在剃刀文件中使用 Debug.Writeline?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!