J
Joe
I'm trying to track down where objects are referenced because I want to
clean up the memory when I'm done with them. I thought I found all
references but it doesn't seem that way because calling GC.Collect() doesn't
free very much.
I ran the built-in profiler and I get a warning:
"An abnormal percentage of objects were collected in generation 2, which is
inefficient. Investigate further by using the Objects Lifetime view."
The top 3 generation 2 are:
System.Decimal
System.Int32
System.Runtime.Serialization.ObjectHolder
I don't think there is anything I could do about Decimal and Int32 but what
is the ObjectHolder? I do deserialize data but don't know what I can do to
clean up this object
Thanks,
Joe
clean up the memory when I'm done with them. I thought I found all
references but it doesn't seem that way because calling GC.Collect() doesn't
free very much.
I ran the built-in profiler and I get a warning:
"An abnormal percentage of objects were collected in generation 2, which is
inefficient. Investigate further by using the Objects Lifetime view."
The top 3 generation 2 are:
System.Decimal
System.Int32
System.Runtime.Serialization.ObjectHolder
I don't think there is anything I could do about Decimal and Int32 but what
is the ObjectHolder? I do deserialize data but don't know what I can do to
clean up this object
Thanks,
Joe