Anwar Chandra
Anwar Chandra

Reputation: 8648

C# check silverlight object size at runtime

How can I find the size of particular object such as Rectangle, Canvas or Glyphs objects in my silverlight application?

can I use memprofiler or antz profiler on silverlight runtime?

Upvotes: 2

Views: 930

Answers (2)

Hrvoje Hudo
Hrvoje Hudo

Reputation: 9024

Or at least you can try with Silverlight Spy to see total memory consumption.

Upvotes: 1

Sam Saffron
Sam Saffron

Reputation: 131142

Related: Does a Silverlight memory profiler exist?

Windbg with SOS extensions will work against silverlight.

SOS allows you to walk the managed heaps and look at all the objects in memory.

Upvotes: 1

Related Questions