I have a boolean array that contains some values that represent an ASCII value:
bool[] myBoolReceived = new bool[8];
I am trying to convert it to char, so I can add it to a list containing characters.
myReceivedMessage = new List<char>();
I tried to use the method Convert.ToChar, but it does not work.
source
share