目前的姓名不起作用......
谢谢你们!
public int ID { get; set; }
public string Forename { get; set; }
public string Surname { get; set; }
public string Username { get; set; }
public string Dept { get; set; }
public string JobTitle { get; set; }
public string EmailAddress { get; set; }
public string Office { get; set; }
public string Fullname { get; set{Fullname + "" + Surname };}
答案 0 :(得分:4)
这里有许多问题。首先get
用于返回一些值,而set
用于设置值,因此您可以将其反转。其次,您需要return
来自get
的内容。第三,看起来你真的不想使用set
。
我认为你的意思是:
public string Fullname { get { return Forename + " " + Surname; } }
答案 1 :(得分:0)
将代码放入get方法....
答案 2 :(得分:0)
看起来你想要做的就是:
public string Fullname { get { return Forename + "" + Surname; } }
答案 3 :(得分:0)
public string Fullname { get { return Forename + " " + Surname; } }