C# 非元音单词
我想要一个需要返回非元音单词的扩展方法。
public static IEnumerable<T> NonVowelWords<T>(this IEnumerable<T> word)
{
return word.Any(w => w.Contains("aeiou"));
}
我设计时收到错误,因为“T”不包含扩展方法“Contains”。
I want an extension method that needs to return non-vowel words.I designed
public static IEnumerable<T> NonVowelWords<T>(this IEnumerable<T> word)
{
return word.Any(w => w.Contains("aeiou"));
}
I received error as "T" does not contain extanesion method "Contains".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您总是处理字符串,则不需要使用通用方法。
You don't need to use a generic method if you're always dealing with strings.
尝试
Try