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

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

Load the suggestions for the search Combo Box
public static LoadStaticSearchesSuggestions ( ) : void
Результат void
        public static void LoadStaticSearchesSuggestions()
        {
            _staticSearchesSuggestions = new AutoCompleteStringCollection();
            var result = _staticAllSearches.Select(e => e.Name).ToArray();
            _staticSearchesSuggestions.AddRange(result);
            


        }