字符串长度并与int进行比较

时间:2017-11-27 20:24:05

标签: c# substring string-length

为什么这不起作用? 例如,如果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?

0 个答案:

没有答案