我想知道是否可以使用带有 asp.net webforms 和 nvelocity 的扩展方法。如果字符串值为空或空,我想设置一些默认值。
.vm 文件示例:
Example of my email body...
Billable Status: $billableStatus.Evaluate()
rest of my email body...
尝试的扩展方法:
public static class Helper
{
public static string Evaluate(this string value)
{
if (String.IsNullOrEmpty(value))
return "Not Provided";
else
return value;
}
}
或者有什么替代我想要完成的事情吗?