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 7039575
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:48:54+00:00 2026-05-28T01:48:54+00:00

Is it possible to store within an array a rolling set of values without

  • 0

Is it possible to store within an array a rolling set of values without exceeding the set index?

For example I put together a basic console example at as follows:

static void Main(string[] args)
{
    int[] myvalue;
    myvalue = new int[10];

    for (int i = 0; i < 20; i++)
    {
        Console.WriteLine("Array {0} is {1}", i, myvalue[i]);         
    }
    Console.ReadLine();

}

In the current approach I get an index out of bounds exception. What I would like to do is to limit the array to 10 items but as the count increases overwrite the existing items with new values. Therefore I could iterate through 100 times but the array would only show the last ten values (89-99) at the end of the routine.

If an array is not the best approach I would welcome any suggestions as to how to store this in memory.

thank you

  • 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-28T01:48:55+00:00Added an answer on May 28, 2026 at 1:48 am

    You could use a List to store the values, then wrap the Add method to handle the limit on the number of items. This would take care of all the “slide down” logic for you.

    const int MAX_ITEMS = 10;
    List<int> list = new List<int>();
    
    void AddItem(int k)
    {
        list.Add(k);
        if (list.Count > MAX_ITEMS)
        {
            // discard the item at the front of the list
            list.RemoveAt(0);
        }
    }
    

    Whenever you want to add a value, you just call AddItem(n), for example:

    for (int i = 0; i < 100; i++)
    {
        AddItem(i);
    }
    

    Whenever you want to read out the values, you can simply do:

    for (int i = 0; i < list.Count; i++)
    {
        Console.WriteLine(list[i]);
    }
    

    This also has the advantage that you can put less than the maximum number of items in (say you only have 6 instead of 10) and it will still work correctly (you don’t have to worry about unfilled array items).

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

Sidebar

Related Questions

Is possible store a list within application, without necessarily having a database? Otherwise, what
Is it possible to store a type name as a C++ variable? For example,
Within the iOS Simulator, is it possible to access the App Store? That is,
Is it possible to store encrypted connection string so it can be used from
Is it possible to store passwords on the local system (Windows XP) that can
Is it possible to store the results of a call to exec sp_executesql in
Is it possible to store erb templates in database? How?
Is it possible to store the credentials that I use to connect to my
I understand it is possible to store images in Databases as Binary large objects.
I was talking to somebody a recently who mentioned it was possible to store

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.