找不到错误类型或命名空间名称配置文件通用

本文关键字:配置文件 命名空间 错误 类型 找不到 | 更新日期: 2023-09-27 18:33:23

当我编译这段代码时,它向我显示找不到这种错误类型或命名空间名称配置文件。有人可以帮我解决这个问题吗?

case "Profile":
ProfileCommon pc = Profile.GetProfile(user.UserName);
DropDownList3.Items.Clear();
foreach (SettingsProperty p in
ProfileCommon.Properties)
{
DropDownList3.Items.Add(p.Name);
}
MultiView1.ActiveViewIndex = 4;
break;
}

找不到错误类型或命名空间名称配置文件通用

您可能缺少对包含ProfileCommon的命名空间/程序集的using语句或程序集引用。检查您的参考资料!

编辑:

请参阅此问题,了解问题的可能解决方案。