I'm looking for a C# code to split a very large string (hex values) into 8-size chunks (array of strings) so that I could turn them into ints one by one.
The hex value string looks like ...000000030000000800000002...
and I want them in 00000003
, 00000008
, 00000002
, etc.
Much appreciated!