javascript comments in razor mvc3

asp.net-mvc-3, javascript, razor

Solution

Try this:

/* 
* This is my function. 
* @@param parm1 this is first parameter 
* @@param parm2 this is second parameter 
*/ 

To write `@` you just need to repeat it `@@` in Razor view.

Problem

For `javascript` comments, I usually try to follow something similar to these guidelines. However, the Razor engine seems to throw up when it sees stuff like this in the `cshtml` file: ``` /** * This is my function. * @param parm1 this is first parameter * @param parm2 this is second parameter */ ``` The @ sign seems to cause parser errors, since that's a special character in Razor. Anyway, I just wondered what other people are doing. I know I could probably use Razor comments and do something like this: ``` @*param parm1 this is first parameter *@ ``` But that just feels wrong on so many levels.

Original source