Is there a c# language construct that will allow me to add items to a readonly collection property in a constructor? I want to do something like this:
public cl
Try this. It is definitely possible to add elements on construction
var node = new Node { Children = { new Node(), new Node() } };