在以下任何代码实现中是否有性能提升,或者真的不重要?
public class Content
{
public Content()
{
Topics = new List<Topic>();
}
public int ContentId { get; set; }
//Navigation Properties
public ICollection<Topic> Topics { get; set; }
}
和
public class Content
{
public Content()
{
Topics = new HashSet<Topic>();
}
public int ContentId { get; set; }
//Navigation Properties
public ICollection<Topic> Topics { get; set; }
}
MSDN 上的示例将它们混合在一起只是想知道是否有任何区别。