Castle Windsor: How can I update a components registration
问题 If I have defined in config: container.Register( Component.For<X.Y.Z.IActivityService>() .ImplementedBy<X.Y.Z.ActivityService>() .ServiceOverrides(ServiceOverride.ForKey("Listeners").Eq(new [] { typeof(X.Y.Z.DefaultActivityListener).FullName })) .LifeStyle.Transient ); and I wish to extend this configuration and add a new item to the Listeners array property such that the final configuration is effectively: container.Register( Component.For<X.Y.Z.IActivityService>() .ImplementedBy<X.Y.Z