OmarElabd / ObjectExporter

Object Exporter lets you export out an object while debugging in Visual Studio, the object can be serialized in either C#, JSON or XML.
GNU General Public License v3.0
264 stars 82 forks source link

Takes a lot of time to calculate for larger objects #66

Open deepeshk06 opened 7 years ago

deepeshk06 commented 7 years ago

Have a few lists with more than 100 items and it keeps calculating the number of objects. Nothing seems to happen further

paulorb commented 7 years ago

I am having the same issue, I have a List of Objects with 18K items and it is still "Generating Objects" it is running for 10 minutes here, the generation of the objects never ends.

samiraguiar commented 7 years ago

@OmarElabd is it possible to make it give incomplete outputs? For example, before going one level deeper it could output what it already have and update the whole view everytime a new level is completed.

Kabennsky commented 6 years ago

Same Problem... A list with 175 Items and each has a list with 10 items in it. So about 2000 element. That shouldn't be a problem. It takes over 10 minutes just to serialize the first 2 levels. Nice Idea this Tool, but way to slow. And i don't understand why.. A normal XML/JSON Serialization is done in seconds.