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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:42:55+00:00 2026-05-27T23:42:55+00:00

I have to manipulate with some data in C#. My idea is to add

  • 0

I have to manipulate with some data in C#. My idea is to add them into array. Elements of that array will be (it will be array with 3 elements in it)

12, test11, comment12, comment23
15, test21, comment22, comment23
27, test31, comment32, comment33
... etc

Then, I will need to change ie. element 15 should be changed as

15, test21, comment22A, comment23

Can you help me how to work with this kind of arrays.

Thank you in advance!

  • 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-27T23:42:55+00:00Added an answer on May 27, 2026 at 11:42 pm

    Agree with Jon Skeet and here is simple implementation

    class Program
    {
       class MyArrayType
       {
         public int MyInt { get; set; }
         public string Test { get; set; }
         public string Comment1 { get; set; }
         public string Comment2 { get; set; }
         public string Comment3 { get; set; }
    
       }
    
      static void Main()
      {
    
        List<MyArrayType> list = new List<MyArrayType>();
        list.Add(new MyArrayType { MyInt = 1, Test = "test1", Comment1 = "Comment1", Comment2 = "Comment3", Comment3 = "Comment3" });
        // so on
    
        list[15].MyInt = 15;
        list[15].Comment1 = "Comment";
        // so on
      }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some data in CSV format that I want to pull into an
I have some ajax queries that create & manipulate (external) DOM elements during different
I have some data that multiple Activities need to manipulate. Basically there is one
I've got some financial data to store and manipulate. Let's say I have 2
I'm exporting some data I have in a database into Excel. Although the below
I have a class that uses filesystem entities to manipulate data. We have several
I'm writing a script in Python that will spit out some data organized as
I have to manipulate some Excel documents with C#. It's a batch process with
I have situation where a user can manipulate a large set of data (presented
I have written a javascript function that uses setInterval to manipulate a string every

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.