使用 IoC 容器时如何处理原始类型?
即假设你有:
class Pinger {
private int timeout;
private string targetMachine;
public Pinger(int timeout, string targetMachine) {
this.timeout = timeout;
this.targetMachine = targetMachine;
}
public void CheckPing() {
...
}
}
您将如何获得 int 和 string 构造函数参数?