摘要: let: String[] strs = { "A penny saved is a penny earned.", "The early bird catches the worm.", "The pen is mightier than the sword." }; var result = from s in strs //s是数组strs中的一个元素 let word = s.Split(' ') //word是s句子中的单词数组 ... 阅读全文
posted @ 2013-07-04 15:54 hongdada 阅读(443) 评论(0) 推荐(0)