how we convert hexadecimal to binary ...?
in visual studio c#.
give me coding...!
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Neeraj KumarPosted Jul 13, 2015, 11:41 AM
Inathi GqolaPosted Jul 13, 2015, 10:40 AM
string Hex = "001";var s = String.Join("",
Hex.Select(x => Convert.ToString(Convert.ToInt32(x+"", 16), 2).PadLeft(4,'0')))