MemoScope/Modules/Strings/StringAnalysis.cs
Method Analyse
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
internal static List<StringInformation> Analyse(ClrDump clrDump, MessageBus msgBus)
{
var stringType = clrDump.GetClrType(typeof(string).FullName);
var stringInstances = clrDump.EnumerateInstances(stringType);
int nbStrings = clrDump.CountInstances(stringType);