DataTable 是否实现了 IListSource?

发布于 2024-11-18 09:13:31 字数 171 浏览 5 评论 0原文

文档(和智能感知)非常清楚地指出 DataTable 实现了 IListSource。但是为什么 DataTable 没有 getList() 方法,它是 IListView 界面的(主要)部分呢?

The documentation (and intellisense) states very clearly that DataTable implements IListSource. But then why doesn't DataTable have a getList() method, which is (the main) part of the IListView interface?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

笑着哭最痛 2024-11-25 09:13:31

DataTable 使用显式接口实现 来实现IListSource.

您仍然可以通过以下方式使用该方法:

 IListSource listSource = (IListSource)dataTable;
 IList list = listSource.GetList();

DataTable uses Explicit Interface Implementation to implement IListSource.

You can still use the method via:

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