Test.vbhtml
<span>The time is @DateTime.Now.</span>
@Helper Time()
@<p>The time is @DateTime.Now.</p>
End Helper
.末尾のピリオド ( ) に注意してください。@DateTime.Now
MVC3 は受け入れますTest.vbhtml。<span>行と@Helperコンパイルの両方。
MVC4 は、ヘルパーでのみコンパイル エラーを取得します。
Compiler Error Message: BC30203: Identifier expected.
<span>MVC4のは機能しますが、@Helper機能しません。
ピリオドを に置き換えるなど、解決策は簡単.です。しかし、なぜこれが起こるのですか?
明確化のために編集。