Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7572227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T15:52:22+00:00 2026-05-30T15:52:22+00:00

I have a List<Point> that is supposed to be cleared often, as the values

  • 0

I have a List<Point> that is supposed to be cleared often, as the values are used once per iteration, and I get an ArgumentOutOfRangeException while invoking the Clear() method.

I read a explanation that deals with multi-threading, but as far as I’m aware I’ve created no threads (unless c# automates for or while loops into threads somehow, but I doubt that).

Here is my code:

List<Point> temp = new List<Point>();
List<Point> visited = new List<Point>();
// other initializations
for(int i = 0; i < points.Count;i++){
    if(temp.Count != 0)
        temp.Clear(); // Problem occurs here
    temp.Add(A);
    temp.Add(B);
    temp.Add(C);
    temp.Add(D);
    while(!(visited.Contains(temp[0]) && visited.Contains(temp[1])...){
        // calculate some stuff
        for(int j = 0; j <4;j++)
            visited.Add(temp[j]);
        // use point of interests
        temp.Clear();  // no issue on this clear
        temp.Add(newA);
        temp.Add(newB);
        temp.Add(newC);
        temp.Add(newD);
    }
    // display results
}

It throws the ArgumentOutOfRangeException from the first temp.Clear() call.

I’ve also noticed that if I clear the visited list in the same position as the problem temp.Clear(), I get the same error.

To me it seems like a problem that is c# specific, and as I’m very new to the language I’m wondering if I’m not understanding something.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T15:52:23+00:00Added an answer on May 30, 2026 at 3:52 pm

    I think your exception is when you try to access your temp items, List.Clear() doesn’t throw ArgumentOutOfRangeException because implements first IList.Clear() and finally ICollection.Clear(), and they just throw NotSupportedException from .net2 till now not ArgumentOutOfRangeException, If you call your method in different threads I guess your problem is within this lines:

        while(!(visited.Contains(temp[0]) && visted.Contains(temp[1])...){
        //calculate some stuff
        for(int j = 0; j <4;j++)
            visited.Add(temp[j]);
    

    and you can solve it by surrounding this part in lock block.

    Also it’s better to use visited.Intersect(temp).Count ==0 instead of your long if condition.

    Edit: By your updated question problem is clear:

    while(… (current != points[i + 1])) ooopps

    when i = n – 1, points[i + 1] is out of range.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have created a List of pointers that point to every 5th element
I have a generic Print method that iterates over a list and simply prints
I have a ViewModel class that contains a list of points, and I am
I have a list of Point objects, (each one with x,y properties) and would
I have a string like this: TEST.DATA.Data.COR.Point,2;TEST.DATA.Data.COR.Point,5;TEST.DATA.Data.COR.Point,12;TEST.DATA.Data.COR.Point,12;TEST.DATA.Data.COR.WordTOFIND,18 I have a list of array with
i have list of rows that user select and i want to delete them,
http://clifgriffin.com/blockade2/ Ok, I have an unordered list that serves as a list of menu
I have a List of objects and I'd like to loop over that list
I have a page that displays a list of locations chosen by the user,
I have a list of points as shown below points=[ [x0,y0,v0], [x1,y1,v1], [x2,y2,v2].......... [xn,yn,vn]]

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.