public AutoCompletion(string text, string result, AutoCompletionType type, string description) { Text = text; Result = result; Type = type; Description = description; }
public AutoCompletionItem(string text, string insertText, string description, AutoCompletionType type) { _text = text; _insertText = insertText; _desc = description; _type = type; }
public AutoCompletion(string text, string result, AutoCompletionType type) { Text = text; Result = result; Type = type; }