Scott,
>So what is desired is to have a mechanism that will perform conversions of
>an ArrayList (of any type) to a byte array and to do the reverse, convert a
>byte array back to an array list.
Have you tried using the framework's serialization support?
Mattias

Signature
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Scott - 07 Apr 2006 21:18 GMT
Mattias,
I was able to use the BinaryFormatter class along with the MemoryStream and
BinaryWriter classes to accomplish this task
The only casting necessary was when deserializing the ArrayList class back.
Thanks!
Scott
> Have you tried using the framework's serialization support?
>
> Mattias