I am trying to get an item from a char array based on the index that I have. I have used code earlier to get the index of a specified item but now I want the opposite, to get th
Assuming your char array is called ArrayOfChars and the index is i. It should be as simple as
ArrayOfChars
i
char arrayChar = ArrayOfChars[i];
var arrayChar = yourArray[index];