Possible Duplicate:
How do you convert Byte Array to Hexadecimal String, and vice versa, in C#?
Can we convert a hex string to a byte array using a built-in function in C# or do I have to make a custom method for this?
Can we convert a hex string to a byte array using a built-in function in C# or do I have to make a custom method for this? |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Here's a nice fun LINQ example.
|
|||||||||||||||||||
|
|
||||
|
|
I did some research and found out that byte.Parse is even slower than Convert.ToByte. The fastest conversion I could come up with uses approximately 15 ticks per byte.
// also works on .NET Micro Framework where (in SDK4.3) byte.Parse(string) only permits integer formats. |
|||||||||||
|
|
I think this may work.
|
|||
|
|
|
Here's my take on it using VB.NET without LINQ so it is faster:
|
|||
|
|