How do I convert a String written as Binary, to binary (in byte array)?
EDIT: I want to write on textBox a binary data as (0101111100010101..), and when I want to take it I use textBox.text (this way give me binary string "0101111100010101...") therefore when I convert it to byte array it give me: (48 it means "0") and (49 it means "1") which is ASCII, now I want to convert each 8 bits from binary string: "0101111100010101" to byte (create a byte array)