resharper-heapview
resharper-heapview copied to clipboard
ReSharper Heap Allocations Viewer plugin
It would be nice to be able to differentiate any allocation of IDisposable object with a different color than other standard object. Thanks a lot. PS: I know It could...
Because iterators have cached .GetEnumerator()
- If we have lambda expression or anonymous delegate with a closure/`this` capture... - And this lambda/anonymous method passed as an argument of some invocation... - Having overload of the...
Member invocation on a readonly value type field causes a temporary copy of the field to be made before invocation. From Mr Skeet: http://msmvps.com/blogs/jon_skeet/archive/2014/07/16/micro-optimization-the-surprising-inefficiency-of-readonly-fields.aspx
It would be nice if there was the ability to ignore certain classes of object creation, for example anything inheriting `Exception` or `EventArgs`. Or if that isn't possible, then the...
`JetBrains.TextControl.DocumentMarkup.EffectType` do not supports bold underline like in IDEA. Would be cool to support in ReSharper and use it for allocation highlightings
We can introduce the "Manual GC manipulation considered harmful" warning to allow identification of all the GC APIs usages that can trigger the full blocking GC. For example, `GC.GetTotalMemory(true)` forces...