private void AddSuggestion(string str) { if (string.IsNullOrWhiteSpace(str)) { return; } Buffer = StringOperation.ReplaceLastOccurrence(Buffer, StringOperation.LastWord(Buffer), str); }