¿Cómo se manejan los tipos primitivos cuando se usa un contenedor IoC?Tipos primitivos y contenedores IoC
I.e. dado que usted tiene:
class Pinger {
private int timeout;
private string targetMachine;
public Pinger(int timeout, string targetMachine) {
this.timeout = timeout;
this.targetMachine = targetMachine;
}
public void CheckPing() {
...
}
}
¿Cómo obtendría los argumentos int y string constructor?
¡Gran pregunta! – Stimul8d