Consider the following nested type:
public class Book
{
private class Chapter
{
}
}
As the chapter type is controlled by Book, is it a means of composition or is it a bad assumption to think composition here?
I am not sure, so to understand this I raised the question.