Hi All,
How do I convert a C# Queue into a binary variable, so that I can store it as a blob in SQL?
Help appreciated!
Soham
Hi All,
How do I convert a C# Queue into a binary variable, so that I can store it as a blob in SQL?
Help appreciated!
Soham
Look into Serialization. The easiest way might be to serialize the objects that are stored in the queue in their order, store them into your BLOB, then enqueue them on deserialization into a new Queue.