I am trying to copy exactly as it is, a vector<std::string> to a vector<byte> without changing/casting any element. What do i mean? For example this is what it is contained in my vector<std::string>:
Element 1: AC
Element 2: 9C
Element 3: FA
Element 4: BC
etc..
How could i possibly copy the exact same elements on a vector<byte> ?