当您必须附加另一个固定字符串时,在 Razor Inline Express 中使用什么

What to use in a Razor Inline express when you have to attach another fixed string

当您必须使用 razor 变量但后面不能有 space 时,最佳做法是什么?

例如

@foreach (var photo in Model.Photos)
{
        <a style="width:@photo.ThumbWidth px;" href="..."><img....></a>
}

我不想要“px”前的 space

谢谢

括号:

@foreach (var photo in Model.Photos) {
        <a style="width:@(photo.ThumbWidth)px;" href="..."><img....></a> 
}