.NET 和 ASP 中通用方法的真实示例。网络模型控制器
可以给我一些合理的现实生活例子 .NET 中用于某些简单桌面应用程序的通用方法?
有哪些场景可以使用?
谢谢你!
Could give me some reasonable real-life examples of
Generic Methods in .NET for some simple desktop application?
Which the scenarios are there available?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最常用的通用方法可能是
中的扩展方法可枚举
和可查询
,即形成 LINQ 的那些。要早点返回,
List.ConvertAll
是将一种类型的列表 (T
) 转换为另一种类型 (TOutput
) 的一个很好的示例。在这种情况下,类型是通用的(List
的T
和方法也是通用的(在TOutput
中)。The most commonly used generic methods are probably the extension methods in
Enumerable
andQueryable
, i.e. the ones forming LINQ.To go back a bit earlier,
List<T>.ConvertAll<TOutput>
is a good example of converting a list of one type (T
) to another type (TOutput
). In this case the type is generic (theT
ofList<T>
and the method is also generic (inTOutput
).