/// <summary> /// Initializes a new instance of the <see cref="NuGenMiniBarControlCollection"/> class. /// </summary> /// <exception cref="ArgumentNullException"><para><paramref name="owner"/> is <see langword="null"/>.</para></exception> public NuGenMiniBarControlCollection(NuGenMiniBar owner) { if (owner == null) { throw new ArgumentNullException(); } _owner = owner; }
/// <summary> /// Initializes a new instance of the <see cref="NuGenMiniBarControlCollection"/> class. /// </summary> /// <exception cref="ArgumentNullException"><para><paramref name="owner"/> is <see langword="null"/>.</para></exception> public NuGenMiniBarControlCollection(NuGenMiniBar owner) { if (owner == null) throw new ArgumentNullException(); _owner = owner; }