I have a binary file that contains xmldata in bytes 2-43. How would I go about extracting that data to a file?
I am able to extract small integer fields doing something like this:
Row.TenderNumber = BitConverter.ToInt16(Row.RawBytesraw, 44);
However, I don't know how to extract xml data from this file. Any help is appreciated.