我有一个像
tagAttribute="<%=If(Model.booleanProperty, "true", "false" )%>"
我需要做类似的事情吗
if(Model.booleanProperty)
{string booleanProperty = "true"};
else
{ string booleanProperty = "false"};
tagAttribute = booleanProperty;
或者在 C# 中有更好的方法吗?如果这有所作为,我也在使用 Razor。