In the Castle.Windsor demo the configuration file contains
<component
id="form.component"
type="GettingStartedPart1.Form1, GettingStartedPart1" />
Why the namespace GettingStartedPart1
is repeated? Couldn't we write just:
<component
id="form.component"
type="GettingStartedPart1.Form1" />
?