gpt4 book ai didi

c# - 找不到数据成员

转载 作者:太空狗 更新时间:2023-10-29 20:46:06 24 4
gpt4 key购买 nike

由于我已经完成了关于我的这个问题的研究,我仍然无法解决我的错误 1 ​​The type or namespace name 'DataMember' could not be found (are you missing a using directive or汇编引用?)

我遇到了一个解决方案,说明我应该引用 System.Runtime.Serialization 但即使添加对它的引用我仍然没有运气。

这是我的代码:

using System;
using System.Linq;
using System.Collections.Generic;
using System.Text;
using System.Runtime.Serialization;
using System.Xml.Serialization;

namespace WebServApp
{
[Serializable]
public class Employee
{
[DataMember]
public int EmpNo { get; set; }
[DataMember]
public string EmpName { get; set; }
[DataMember]
public int DeptNo { get; set; }
[DataMember]
public int Salary { get; set; }
}
}

这是我实际尝试遵循的教程: http://www.dotnetcurry.com/ShowArticle.aspx?ID=472

谁能帮我解决这个错误?

最佳答案

从代码中删除 System.Runtime.Serialization,然后从 menu > Project > Add reference ..> 添加。然后再次添加到代码中。有用。

关于c# - 找不到数据成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12687315/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com