为什么这不起作用? 例如,如果teaserLength返回300,则为真。 如果它返回例如37,则为假..即使它应该被反转......
我的代码:
@{
int teaserLength = item.TeaserText.Length;
}
@if (teaserLength >= 75)
{
@item.TeaserText
}
else {
@item.TeaserText.Substring(1, 75)
}
为什么长度为37的TeaserText会给出
ArgumentOutOfRangeException
Index and length must refer to a location within the string.
on substring?