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;
        }