Using Pythonnet in a C# application:
Python returns a bytes ({<class 'bytes'>})
object which is the result of a pickle.dumps
operation.
What is the best way of dealing with this object in C# in terms of persistance to blob storage and rehydrating a bytes
object to pass back to Python at a later stage?