Hello, Bruce!
B> I have an object instance that holds data and I want to save along with
B> data.
B> I want to take the instance and save as is.
Well, I think you need serialization.
Take a look for these samples
( http://www.c-sharpcorner.com/Language/serializingObjectsinCS.asp )
( http://www.codeproject.com/csharp/objserial.asp )
--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
Bruce - 02 Jul 2006 16:51 GMT
> Well, I think you need serialization.
I have no problem with serialization that is extremely easy what I want
to do is while the assembly is loaded into memory I want to save it
with the current property settings to a dll.
I already implemented the serialize and deserialize method. What I
would really like to do is dynamically load the nn assembly train the
network and then save the trained network to the filesystem as a single
dll.