Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 C++/CLI 中的 .Net 中的 DataTable 上使用 AsEnumerable 扩展方法,而 Intellisense 找不到它。我已经将 System.Data.DataSetExtensions 添加到项目的引用中。但这并没有改变什么。
当我在 C# 中尝试同样的事情时,它工作正常。
是否可以在 C++/CLI 中使用 AsEnumerable ?
C++/CLI 不支持扩展方法。您必须像普通方法一样调用这些方法在您的情况下,System::Data::DataTableExtensions::AsEnumerable(dataTable).
System::Data::DataTableExtensions::AsEnumerable(dataTable)