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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:32:16+00:00 2026-05-28T05:32:16+00:00

I’m trying to create this helper method and not sure how to handle the

  • 0

I’m trying to create this helper method and not sure how to handle the indexing on this. I keep getting index out of bounds when it hits the new class initializer in my helper:

public static void AddColumn(this ColumnElementType[] columnListToAddTo,
                             string name, string value)
{
    // Add a new column to the column list
    columnListToAddTo[columnListToAddTo.Length] = new ColumnElementType
            {
                 NAME = name,
                 VALUE = value
            };
}

Example setting up and using the helper:

        ColumnElementType[] columns =  new ColumnElementType[3];
        columns.AddColumn(Constants.EmailColumnName, email);
        columns.AddColumn(Constants.FirstNameColumnName, firstName);
        columns.AddColumn(Constants.LastNameColumnName, lastName);
  • 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-28T05:32:17+00:00Added an answer on May 28, 2026 at 5:32 am

    This doesn’t work, since columnListToAddTo[columnListToAddTo.Length] will always return 3 (the length of the array you declared). Therefore:

    • you are trying to add each element at an invalid index (3; valid would be 0..2)
    • even if you use Length-1, you would always put the new element at the same array location (overwriting the reference to the previously added element)

    Also, since an array cannot be extended (you’d have to copy the contents to a new, larger array), I would also suggest to use a List<ColumnElementType> or alternatively an ArrayList (if you can’t use generics).

    If you still want to use an array, then you should extend your helper method to take an index parameter, where to add the new element, e.g:

    ColumnElementType[] columns =  new ColumnElementType[3];
    int index = 0;
    columns.AddColumn(Constants.EmailColumnName, email, index++);
    columns.AddColumn(Constants.FirstNameColumnName, firstName, index++);
    columns.AddColumn(Constants.LastNameColumnName, lastName, index++);
    
    //...
    
    public static void AddColumn(..., int index)
    {
      // Add a new column to the column list
      columnListToAddTo[index] = new ColumnElementType { ... };
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically, what I'm trying to create is a page of div tags, each has
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString

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.