Index is either the starting point or ending point of an array.An index always starts of with 0.So if you array has 10 values, the values will be thus. For a csv examplemycsv = '1,2,3,4,5,6,7,8,9,10'string[] myarray = mycsv.split(',');each value can be gotten starting with the zero index ie to get the first you useFirst value will beLabel1.Text = myarray[0].ToString();the 10 value will be Label1.Text = myarray[9].ToString();