创建 IList<> 类型的类字段?
我正在尝试创建一个名为 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???
}
感谢您的帮助!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您忘记了属性的名称:
应该可以。
You forget the name of the property:
should work.
您缺少属性名称
,即
Your missing the property name
ie