AddinFramework.Util.Search.GetRtf C# (CSharp) Метод

GetRtf() статический публичный Метод

Get the suggestions for the rtf box
static public GetRtf ( ) : string
Результат string
        static public string GetRtf()
        {
            // var s = _staticAllSearches.Select(e => $"{e.Score,2} {e.Category,-15} {e.Name}" ).ToList();
            var s = _staticAllSearches.Select(e => $"{e.Category,-10} {e.Name}" ).ToList();
            return string.Join($"{Environment.NewLine}", s);
        }