Click here to Skip to main content
15,887,340 members
Home / Discussions / C#
   

C#

 
AnswerRe: Index Out of Range Pin
Abhinav S6-Jul-12 17:57
Abhinav S6-Jul-12 17:57 
GeneralRe: Index Out of Range Pin
Trak4Net9-Jul-12 8:18
Trak4Net9-Jul-12 8:18 
AnswerRe: Index Out of Range Pin
Abhinav S6-Jul-12 17:57
Abhinav S6-Jul-12 17:57 
GeneralRe: Index Out of Range Pin
Roger Wright6-Jul-12 20:03
professionalRoger Wright6-Jul-12 20:03 
GeneralRe: Index Out of Range Pin
Abhinav S6-Jul-12 23:02
Abhinav S6-Jul-12 23:02 
GeneralRe: Index Out of Range Pin
ASPnoob7-Jul-12 0:27
ASPnoob7-Jul-12 0:27 
GeneralRe: Index Out of Range Pin
Roger Wright7-Jul-12 6:52
professionalRoger Wright7-Jul-12 6:52 
GeneralRe: Index Out of Range Pin
Trak4Net9-Jul-12 22:11
Trak4Net9-Jul-12 22:11 
The reason this code would throw an out of range exception is if the code executes within this section
C#
if (list1.Count == 0)
{
      //Add the content of myText into list1
      list1.Add(myText);
      i++;
}


now you have added an item to the list and the count is now 1. You then increment i from zero to 1.

Now you are trying to return the first item in the collection (a zero based index collection) with the value of 1 when the value you should be requesting is 0
return list1[i-1] or list1[0] or list1[list1.Count - 1] etc. of course if your i value is 0 and you try list1[i-1] you will also receive an error because that would be the value -1 and that is out of range.

Hope that helps if you haven't already figured this out.
QuestionStatic IP? Pin
Midnight Ahri6-Jul-12 15:49
Midnight Ahri6-Jul-12 15:49 
AnswerRe: Static IP? Pin
PIEBALDconsult6-Jul-12 18:31
mvePIEBALDconsult6-Jul-12 18:31 
AnswerRe: Static IP? Pin
Midnight Ahri6-Jul-12 18:33
Midnight Ahri6-Jul-12 18:33 
AnswerRe: Static IP? Pin
SoMad6-Jul-12 19:59
professionalSoMad6-Jul-12 19:59 
GeneralRe: Static IP? Pin
Roger Wright6-Jul-12 20:59
professionalRoger Wright6-Jul-12 20:59 
GeneralRe: Static IP? Pin
SoMad7-Jul-12 16:31
professionalSoMad7-Jul-12 16:31 
GeneralRe: Static IP? Pin
Dave Kreskowiak7-Jul-12 2:47
mveDave Kreskowiak7-Jul-12 2:47 
GeneralRe: Static IP? Pin
SoMad7-Jul-12 16:28
professionalSoMad7-Jul-12 16:28 
AnswerRe: Static IP? Pin
Midnight Ahri8-Jul-12 15:02
Midnight Ahri8-Jul-12 15:02 
QuestionC# new linq to sql file problem Pin
dcof6-Jul-12 14:19
dcof6-Jul-12 14:19 
AnswerRe: C# new linq to sql file problem Pin
vinodkrebc6-Jul-12 20:18
vinodkrebc6-Jul-12 20:18 
GeneralRe: C# new linq to sql file problem Pin
dcof7-Jul-12 10:27
dcof7-Jul-12 10:27 
GeneralRe: C# new linq to sql file problem Pin
vinodkrebc7-Jul-12 17:12
vinodkrebc7-Jul-12 17:12 
QuestionC# add table to linq to sql file problem Pin
dcof6-Jul-12 14:17
dcof6-Jul-12 14:17 
QuestionC# filename, linenumber logging Pin
TheGreatAndPowerfulOz6-Jul-12 6:44
TheGreatAndPowerfulOz6-Jul-12 6:44 
AnswerRe: C# filename, linenumber logging Pin
TheGreatAndPowerfulOz6-Jul-12 7:10
TheGreatAndPowerfulOz6-Jul-12 7:10 
GeneralRe: C# filename, linenumber logging Pin
PIEBALDconsult6-Jul-12 7:28
mvePIEBALDconsult6-Jul-12 7:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.