Hi, I am building an object through castle windsor and my constructor accepts an argument of a custom type. How do I pass it to my object.
public class ArgumentClass { int value1; string value2; }
public interface IInterface { }
public class CClass : IInterface { public CClass(ArgumentClass arg) { } }
All my configuration is defined in the XML file and I want to define the argument in the XML as well. So no programming please!