controlflow / resharper-heapview

ReSharper Heap Allocations Viewer plugin
MIT License
303 stars 28 forks source link

False positive for arglist #88

Closed hankovich closed 2 years ago

hankovich commented 3 years ago

In the following code

Console.Write(null!, null!, null!, null!, null!, __arglist(42));

42 is highlited as boxed. However, as I see here, no boxing will be applied and all varargs will be passed through the stack.

controlflow commented 2 years ago

Fixed, thanks for reporting!