gpt4 book ai didi

c# - 创建类型为IList <>的类字段?

转载 作者:太空宇宙 更新时间:2023-11-03 17:35:51 24 4
gpt4 key购买 nike

我正在尝试创建一个名为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???
}


谢谢您的帮助!

最佳答案

您忘记了属性的名称:

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


应该管用。

关于c# - 创建类型为IList <>的类字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3228726/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com