Hi,
Im using windsor along with the subresolver ArrayResolver and works great besides one thing.
Here the ArrayResolver works the the way it supposed to work.
class SomeClass : ISomeInterface
{
public SomeClass(ISomeDependency[] dependecies)
{}
}
This thing does not work
ISomeDependency[] = container.Resolve<ISomeDependency[]>().Cast<ISomeDependency>().ToArray()
, and this is why im asking, why isn't the sub resolver involved here?