我在这里遇到很多错误,以字段作为类型!我正在尝试使用一个类,用户可以通过输入有关其外观的详细信息来创建时尚个人资料
public class Profile
{
public Profile()
{
}
// method
public string getMSG()
{
return "What;
}
答案 0 :(得分:1)
if!string.IsNullOrEmpty(value);
这应该是错的,(在“if”之后删除半冒号,将条件放在括号中)
if (!string.IsNullOrEmpty(value))
{
// your code
}
也不应该有任何半冒号“;”在eyeColor之后,如果你已经获得/设置它。
public string eyeColor