我是ASP.NET MVC Razor 引擎的新手。
我想知道在cshtml代码中的html片段之前使用@*
的含义/目的吗?
最佳答案
它是一个评论
@* this is commented code in a .cshtml file*@
类似于.cs文件中的内容
/*this is commented code in a .cs file*/
关于c# - asp.net.mvc中@ *运算符的含义是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32267504/