private static String ToPrintableString()

in workshop/dotnet/Core.Utilities/Extensions/ModelExtensionMethods.cs [66:78]


        private static String ToPrintableString(this IList<PluginFunctionMetadata> functions)
        {
            var sb = new StringBuilder();
            sb.AppendLine("**********************************************");
            sb.AppendLine("****** Registered plugins and functions ******");
            sb.AppendLine("**********************************************");
            sb.AppendLine();
            foreach (PluginFunctionMetadata func in functions)
            {
                sb.AppendLine(ToString(func));
            }
            return sb.ToString();
        }