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.
我创建了一个数据集。在我的程序中,我使用了这样的数据集:
DataSet1 ds = new DataSet1();
而且完全没有错误。
但是,当我像组织表单时一样将 DataSet1 移动到解决方案中的文件夹时,我遇到了错误。为什么当我将数据集放在文件夹中时它会给我错误?如果不允许为其创建文件夹,我将如何组织我的数据集?
在文件夹中创建新数据集时,数据集的默认命名空间是文件夹名称。所以你想在哪里使用它,你需要使用完整的文件夹名作为命名空间,像这样:
FolderName.SubFolderName.DataSet1 ds = new FolderName.SubFolderName.DataSet1();
或者在您尝试使用数据集的类的顶部,添加一个 using:
using FolderName.SubFolderName;