0

从字段作为类型开始,我在这里遇到了很多错误!我在这里尝试使用一个类,用户可以通过输入有关其外观的详细信息来创建时尚档案

public class Profile
    {
    public Profile()
    {
    }
    // method
    public string getMSG()
    {
        return "What;
    }
4

1 回答 1

1
    if!string.IsNullOrEmpty(value);

这应该是错误的,(删除“if”后的分号,将条件放在括号中)

    if (!string.IsNullOrEmpty(value))
    {
        // your code
    }

也不应该有任何分号“;” 如果您正在获取/设置它,则在 eyeColor 之后。

    public string eyeColor 
于 2012-10-03T16:51:38.267 回答