AdvancedLauncher.UI.Controls.AutoCompleteBox.SuggestionProvider.SuggestionProvider C# (CSharp) Метод

SuggestionProvider() публичный Метод

public SuggestionProvider ( IEnumerable>.Func method ) : System
method IEnumerable>.Func
Результат System
        public SuggestionProvider(Func<string, IEnumerable> method)
        {
            if (method == null) {
                throw new ArgumentNullException("method");
            }
            _method = method;
        }