.NET 和 ASP 中通用方法的真实示例。网络模型控制器

发布于 2024-12-07 17:39:50 字数 80 浏览 1 评论 0原文

可以给我一些合理的现实生活例子 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南巷近海 2024-12-14 17:39:50

最常用的通用方法可能是 中的扩展方法可枚举可查询,即形成 LINQ 的那些。

要早点返回,List.ConvertAll是将一种类型的列表 (T) 转换为另一种类型 (TOutput) 的一个很好的示例。在这种情况下,类型是通用的(ListT和方法也是通用的(在TOutput中)。

The most commonly used generic methods are probably the extension methods in Enumerable and Queryable, 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 (the T of List<T> and the method is also generic (in TOutput).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文