Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NClass"/> class.
 /// </summary>
 public NClass([NotNull] string name) : base(name)
 {
     Items = new NItemCollection(this);
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NItem"/> class.
 /// </summary>
 public NCompound([NotNull] string name, [CanBeNull] IEnumerable <INItem> items = null) : base(name)
 {
     Items = new NItemCollection(this, items);
 }