Issue
In one of my web MVC3 sites, I'm seeing a semicolon at the bottom of the page.
Are semicolons required on @using some.Library.Namespace;
statements?
Solution
There are two rules for semicolons:
Inside a code block, each complete code statement must end with a semicolon.
<!-- Single-statement block --> @{ var theMonth = DateTime.Now.Month; } <!-- Multi-statement block --> @{ var outsideTemp = 79; var weatherMessage = "Hello, it is " + outsideTemp + " degrees."; }
Inline expressions don't end with a semicolon.
<!-- Inline expression, so no semicolon --> <p>Today's weather: @weatherMessage</p>
Further Reading
Answered By - Ed Guiness Answer Checked By - Marilyn (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.