Hello,
I have a basic c++ STL question. I have an octet array class (legacy).
Now lets say the octet array has the following contents:
array[0]=00
array[1]=01
array[2]=30
array[3]=01
array[4]=114
The key we need to generate from the above array should match ["00130-1-114"]
Whats the best way to get this from the above array.
In the legacy code, there is way to convert, but is using lot of magic numbers everywhere, it is quite not readable..
~pdk