This might be really simple question and I though the <text> tags were the answer but they do not seem to be working on my part.
I simply want to display @azamsharp in my asp.net mvc application.
<text> @azamsharp </text>
gives me the following error:
The name ‘azamsharp’ does not exist in the current context
@@azamsharpRazor see the
@and thinks you’re escaping into code, so it looks for a variableazamsharp.@@tells razor you want to print an@symbol, not escape into code.