E-Learning

Learn C# – How To Add Values to a C# Array

c# array values

The Array is used to store information in a structured manner. It is a data structure that helps store and retrieve data. If you are looking to add values to a C# array, you have come to the right place. You can do so by using the following code:

The above code is easy to understand. All you need to do is initialize a new array and then add values by using a loop.

However, using an Array data structure may not always be the best solution. For instance, if you later determine you need to expand the array size, you cannot just do that as it is an immutable data structure. To solve the problem, you can use Lists, a data structure that works similar to Array, but without the size limits. To utilize List, you can use the following code and get better results in terms of adding values later on:

With List, you can add new elements by using the Add() function.

The above line of code will add 55 to the end of the list. In short, Arrays are immutable whereas Lists are a mutable data structure.

Sometimes, it is necessary to use Array. For example, if you are storing a numeric month value, there is no point in using List for the operation. But, if you have used List to create the month numbers, you can also easily convert it back to the Array by using the following code. This will add security to your code and also ensure that the app doesn’t break down due to bugs.

You can read more about Array Method here.

You can also check on our website videos about C#. Below are some examples:

  • Game Economy Simulation – #indie #gamedev (part 7) – C#

  • Working On Game Design Program!! (part 3) – C#

You can also follow some of our broadcasters who program in C#, as below:

 chubz

 AngryAlbino

Another cool way to find out interesting things about C# is to access our project page!

Avatar
About author

I, Dr. Michael J. Garbade is the co-founder of the Education Ecosystem (aka LiveEdu), ex-Amazon, GE, Rebate Networks, Y-combinator. Python, Django, and DevOps Engineer. Serial Entrepreneur. Experienced in raising venture funding. I speak English and German as mother tongues. I have a Masters in Business Administration and Physics, and a Ph.D. in Venture Capital Financing. Currently, I am the Project Lead on the community project -Nationalcoronalvirus Hotline I write subject matter expert technical and business articles in leading blogs like Opensource.com, Dzone.com, Cybrary, Businessinsider, Entrepreneur.com, TechinAsia, Coindesk, and Cointelegraph. I am a frequent speaker and panelist at tech and blockchain conferences around the globe. I serve as a start-up mentor at Axel Springer Accelerator, NY Edtech Accelerator, Seedstars, and Learnlaunch Accelerator. I love hackathons and often serve as a technical judge on hackathon panels.