0
public class MyClass{

public MyClass(System.Type type)
{
// do whatever
}
}

如何在 spring.net DI 中传递 SomeOtherClass 类型?我无法在文档中或我的实现中解决这个问题?试图在下面做,但有一个例外..:

...
  <constructor-arg index="0" value="SomeOtherClass" type="System.Type"/> 
..
4

1 回答 1

2
<constructor-arg index="0" value="MyNamespace.SomeOtherClass, MyAssembly" /> 
于 2013-10-22T07:38:25.483 回答