컬렉션 속성 ("IList"또는 Array 유형)의 컬렉션 속성이 요소가 없을 때 null이거나 빈 컬렉션으로 표시되어야하는지 (즉 길이가 제로)컬렉션 속성을 나타내는 모범 사례에 항목이 없음
예
public class Teacher
{
public List<Student> Students = null // to represent absence of items
}
또는이 주위에 가장 좋은 방법은 무엇
public class Teacher
{
public List<Student> Students = new List<Student>() // Initialize the collection.
}
.