I have a string value that consists of 1s and 0s. value "1" is set if the checkbox is checked and "0" if not checked. Example:
string CheckedVal = "11100110111";
Now I need to convert [CheckedVal] to BitArray()
in order send it thorugh a relay thread.
Is there a way to convert the string [CheckedVal] to BitArray()
?