Converting a binary string representation into binary array in C#
Stumbled across this question on StackOverflow the other day, definitely one for the interview! The question goes: How do you convert a string such as “01110100011001010111001101110100” to a byte array then used File.WriteAllBytes such that the exact binary string is the binary of the file. In this case it would be the the text “test”. …
Converting a binary string representation into binary array in C# Read More »