/// <summary>
 /// Displays the symbol server and cache configuration
 /// </summary>
 private void DisplaySymbolStore(IntPtr self, WriteLine writeLine)
 {
     writeLine(_symbolService.ToString());
 }
Example #2
0
 public static string FormatSymbolStores(
     this ISymbolService symbolService)
 {
     return(symbolService.ToString().Replace(Environment.NewLine, " ").TrimEnd());
 }