-2

简单的一个,我只是忘记了,我丢失了昨天使用的代码。该代码希望是不言自明的

目前全名不起作用...

多谢你们!

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 };}
4

4 回答 4

4

这里有很多问题。首先get用于返回一些值,set用于设置值,所以你把它颠倒了。其次,您需要returnget. 第三,看起来您并不想使用set.

我认为你的意思是:

public string Fullname { get { return Forename + " " + Surname; } }
于 2013-07-23T16:01:18.670 回答
0

将代码放在get方法中......

于 2013-07-23T16:01:39.593 回答
0

看起来你想要做的是这样的:

public string Fullname { get { return Forename + "" + Surname; } }
于 2013-07-23T16:01:53.617 回答
0
public string Fullname { get { return Forename + " " + Surname; } }
于 2013-07-23T16:01:56.330 回答