I am new to the world of ASP.NET and SQL server, so please pardon my ignorance ...
If I have a data structure in C# (for e.g. let\'s just say, a vector that stores some
Assuming the objects are marked with [Serializable] or implement ISerializable the the BinaryFormatter class gives a simple way to do this.
[Serializable]
ISerializable
BinaryFormatter
If not, you're looking at (non trivial) custom code.