创建 IList<> 类型的类字段?

发布于 2024-09-09 05:49:54 字数 999 浏览 3 评论 0 原文

我正在尝试创建一个名为 Friend.cs 的 POCO 对象。我似乎无法为 IList 创建内联属性。

public class User
    {
        public string ID { get; set; }
        public string Name { get; set; }
        public string Rating { get; set; }
        public string Photo { get; set; }
        public string Reputation { get; set; }
        public string Group { get; set; }
        public string GroupColor { get; set; }
        public string PostCount { get; set; }
        public string PostPerDay { get; set; }
        public string JoinDate { get; set; }
        public string Views { get; set; }
        public string LastActive { get; set; }
        public string Title { get; set; }
        public string Age { get; set; }
        public string Birthday { get; set; }
        public string Sex { get; set; }
        public string LinkedIn { get; set; }
        public string Facebook { get; set; }
        public string Twitter { get; set; }
        public IList<Friend> {get???
}

感谢您的帮助!

I'm trying to create a POCO object called Friend.cs. I can't seem to create inline properties for the IList.

public class User
    {
        public string ID { get; set; }
        public string Name { get; set; }
        public string Rating { get; set; }
        public string Photo { get; set; }
        public string Reputation { get; set; }
        public string Group { get; set; }
        public string GroupColor { get; set; }
        public string PostCount { get; set; }
        public string PostPerDay { get; set; }
        public string JoinDate { get; set; }
        public string Views { get; set; }
        public string LastActive { get; set; }
        public string Title { get; set; }
        public string Age { get; set; }
        public string Birthday { get; set; }
        public string Sex { get; set; }
        public string LinkedIn { get; set; }
        public string Facebook { get; set; }
        public string Twitter { get; set; }
        public IList<Friend> {get???
}

Thanks for the help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

归属感 2024-09-16 05:49:54

您忘记了属性的名称:

public IList<Friend> Friends {get; set;}

应该可以。

You forget the name of the property:

public IList<Friend> Friends {get; set;}

should work.

血之狂魔 2024-09-16 05:49:54

您缺少属性名称

,即

Public IList<Friend> Friends { get; set; }

Your missing the property name

ie

Public IList<Friend> Friends { get; set; }
深者入戏 2024-09-16 05:49:54
public class User
{
    public IList<Friend> Friends
    {
        get { return _friends; }
        set { _friends = new List<Friend>(value); }
    }

    private List<Friend> _friends;
}
public class User
{
    public IList<Friend> Friends
    {
        get { return _friends; }
        set { _friends = new List<Friend>(value); }
    }

    private List<Friend> _friends;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文