“ReportDataSource”关键字不会在Intell中显示它出了什么问题

本文关键字:显示 问题 什么 Intell ReportDataSource 关键字 | 更新日期: 2023-09-27 18:21:26

ReportDataSource rds =new ReportDataSource("Orders", ds.Tables[0]);

"ReportDataSource"关键字未在Intell中显示它有什么问题?

“ReportDataSource”关键字不会在Intell中显示它出了什么问题

必须导入适用的命名空间,具体取决于所使用的 UI 框架。

// For instance:
using Microsoft.Reporting.WebForms;
// Or:
using Microsoft.Reporting.WinForms;

您必须包含 Microsoft.Reporting.WebForms

我正在使用Visual Studio 2013 Ultimate预览版,但在C# WebForm网站项目中找到或添加"using Microsoft.Reporting.WebForms;"或"using Microsoft.Reporting.WinForms;"。请为我解释为什么?我在MSDN上寻找这些命名空间,但我可以在Visual Studio 2005,2008,2010上找到参考,但我找不到更高版本的参考。