申し訳ありません..私はしかし、今回は私が特定の文字で終わるすべての単語を検索したい...非常によく似た質問以前に求めている特定の文字で始まり、終わるすべての単語を返す方法は?
List<string> words = new List<string>();
words.Add("abet");
words.Add("abbots"); //<---Return this
words.Add("abrupt");
words.Add("abduct");
words.Add("abnats"); //<--return this.
words.Add("acmatic");
//Now return all words of 6 letters that begin with letter "a" and has "ts" as the 5th and 6th letter
//the result should return the words "abbots" and "abnats"
var result = from w in words
where w.Length == 6 && w.StartsWith("a") && //????