So, simple question really. :)
I had this following code with ASPX View Engine:
<%: ((City)Model.Location).Name %&g
Also, for slightly easier reading...
<strong>@( (Model.Location as City).Name )</strong>
Does <strong>@(((City)Model.Location).Name)</strong> work? I think it's thinking the expression contained within @() is closed.
<strong>@(((City)Model.Location).Name)</strong>
@()