tags:

views:

17

answers:

1

I'm working on different data structures which are obtained after long computation time.

Is there a way to create an object in a first build and use this same object in a second build (for the sake of time computation) ??

I need to do this without specifying the type of object..

Thanks

A: 

I suppose the thing you need is called serialization. Maybe these will help you:

Object Serialization using C#

XmlSerializer Class

eigenein
It's complicated but it is exactly what i need, thanks