yield是对一种复杂行为的简化,就是将一段代码简化为一种简单的形式。
先看一下常规的写法,下面例子中,把找出字符串阵列中,某些元素包含有某些字符的元素。
class Bi { public string[] str { get; set; } public IEnumerable<string> GetIncludeCharacterOfArray(string includeCharacter) { List<string> lst = new List<string>(); for (int i = 0; i < str.Length; i++) { if (str[i].Contains(includeCharacter)) { lst.Add(str[i]); } } return lst; } }
运行结果:
public IEnumerable<string> GetIncludeCharacterOfArrayWithYield(string includeCharacter) { for (int i = 0; i < str.Length; i++) { if (str[i].Contains(includeCharacter)) yield return str[i]; } }
再次运行: