Tuesday, April 23, 2024 22:20

Posts Tagged ‘initialization of arrays’

Test your knowledge! – Arrays

Friday, April 7th, 2017
Read more

Accessing the elements of arrays

Tuesday, April 4th, 2017

As I was explaining in a previous post, arrays can be seen as a building (the array itself) with apartments (the elements of the array), each identified by an apartment number (the indices or the array elements). So, accessing the elements of arrays is done through their elements indices, just like finding an address is done through the apartment number inside a building.… Read more

Initialization of arrays

Friday, March 31st, 2017

Like any other variables, arrays must be initialized before we can access and use an element of that array. In C#, initialization of arrays is done automatically with default initial values. For numeral types, the default initialization value is 0, False for bool type, null for reference types, etc.… Read more


Follow the white rabbit