I have a boolean array which holds some values that represent ASCII value:
bool[] myBoolReceived = new bool[8];
I try to convert it to a char so I can add it to a list that holds chars.
myReceivedMessage = new List<char>();
I tried to use Convert.ToChar
method but it not seems to work.
char contains 2 bytes. you can convert bool array to a byte and then convert it to a character using
Convert
class.reference