What is the meaning of '@' sign in cshtml?

.net, c#, html

Solution

@ is used to switch from view markup to code. Whether to print a single value or to write a code block.

From ASP.NET:

The @ character starts inline expressions, single statement blocks, and multi-statement blocks:

Read a tutorial on its syntax

Problem

Could you explain me what is meant by '@' sign before each variable in cshtml?

Original source