本文介绍了错误:startindex不能小于零。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
i got "StartIndex cannot be less than zero.
Parameter name: startIndex"
在数据库中保存更改后,它会在此行引发错误。 />
After save changes in database it throws an error on this line.
string pHOF = a.HOF.ToString().Substring(Convert.ToString(a.HOF).Length - 3);
请帮助我非常紧急。
谢谢你。
我的尝试:
我是新的在MVC中并且不知道如何调试。
Please Help me its very urgent.
Thank you.
What I have tried:
I'm new in MVC and don't know how to debug.
推荐答案
object HOF = "abcde";
string pHOF = HOF.ToString().Substring(Convert.ToString(HOF).Length - 3);
以下示例将输出: StartIndex不能小于零。参数名称:startIndex 因为2 - 3 = -1,startIndex必须为0或更多。
Example below will output: StartIndex cannot be less than zero. Parameter name: startIndex because 2 - 3 = -1, the startIndex must be 0 or more.
object HOF = "ab";
string pHOF = HOF.ToString().Substring(Convert.ToString(HOF).Length - 3);
这篇关于错误:startindex不能小于零。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!