InliningAnalyzer icon indicating copy to clipboard operation
InliningAnalyzer copied to clipboard

Inlining Analyzer is a Visual Studio Extension that shows in the source code if a method call will be inlined by the JIT compiler.

Results 10 InliningAnalyzer issues
Sort by recently updated
recently updated
newest added

Hello, I'm having some trouble running this extension and would like to ask for your kind assistance. I searched for an answer before but found nothing. In VS 2019, I...

Hi, Trying to use your tool Vs2019 with a .net 5.0 project. Having this problem System.IO.FileNotFoundException: Impossible de charger le fichier ou l'assembly 'System.Runtime, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' ou une de...

Please support VS 2022

> class Program { int inli(string f) { return int.Parse(f); } int ninli(string f) { try { return int.Parse(f); } catch (Exception e) { return 0; } } void Main(string[]...

Hi, I'm trying to run the analyzer against my .NET standard project which is an analyzer. (source code: https://github.com/RalfKoban/MiKo-Analyzers ) Unfortunately, I get a lot of FileNotFoundExceptions reported as the...

In VS 2017 in my F# (dotnet SDK project type) Project I do get the tools menu item. The following error thrown from Tools\Inlining Analyzer\Run Inlining Analyzer on (current project)....

I’ve landed today in this repository after reading https://mattwarren.org/2019/03/01/Is-CSharp-a-low-level-language/ Both the post and this tool look like excellent ways of getting more insights in the performance of an application. Unfortunately...

Cannot run this analyzer on several projects, e.g. a public one: https://github.com/Spreads/Spreads.LMDB/ I have only `dotnet --version 2.1.402` on my Windows 10 machine (plus full framework 4.7.2). Haven't found in...

Is this extension supported by Visual Studio 2017? I've tried it on different projects on 2 different machines, but after doing `Tools > Inlining Analyzer > Run inlining analyzer on...

In the following example: ``` using System.Runtime.CompilerServices; namespace ex { public struct Cell { public int X; public int Y; } public sealed unsafe class CellArray1 { private Cell* _data;...