private string BuildInjectionInstructionsStringReportFor(MethodPrivilegePropagationReport report)
        {
            var writer = new StringWriter();

            WriteInjectionInstructionsFor(report.CriticalMethods, "SC-M", writer);
            WriteInjectionInstructionsFor(report.SscMethods, "SSC-M", writer);
            WriteInjectionInstructionsFor(report.CriticalTypes, "SC-T", writer);
            return(writer.ToString());
        }
 private string BuildInjectionInstructionsStringReportFor(MethodPrivilegePropagationReport report)
 {
     var writer = new StringWriter();
     WriteInjectionInstructionsFor(report.CriticalMethods, "SC-M", writer);
     WriteInjectionInstructionsFor(report.SscMethods, "SSC-M", writer);
     WriteInjectionInstructionsFor(report.CriticalTypes, "SC-T", writer);
     return writer.ToString();
 }