我使用以下代码,我不明白以下内容: 1.为什么我在txt文件或for语句中没有看到定义字符串名称,因为它在标记内 2.如果我想看到它,我需要使用不同的标签吗?
<#
string name = "Sop";
#>
Hello there ,<#=name #>
<#
for (int i = 0; i < 5; i++)
{
#>
Hi!
<#
}
#>
输出
Hello there ,Sop
Hi!
Hi!
Hi!
Hi!
Hi!