16 lines
245 B
C#
16 lines
245 B
C#
using System.Collections;
|
|
|
|
namespace AutoCompleteTextBox.Editors
|
|
{
|
|
public interface ISuggestionProvider
|
|
{
|
|
|
|
#region Public Methods
|
|
|
|
IEnumerable GetSuggestions(string filter);
|
|
|
|
#endregion Public Methods
|
|
|
|
}
|
|
}
|