什么时候可以满足房地产进口?我认为他们会在构造函数之前得到满足,因为属性是在构造函数运行之前初始化的,但是下面的示例显示ImportedClass
在构造函数中为 null。
我知道我可以通过使用 ImportingConstuctor 来解决这个问题;这是为了了解何时满足财产进口。
public MyClass
{
[Import]
public ImportedClass ImportedClass {get;set;}
public MyClass()
{
//Imported Class is null at this point, so nothing can be done with it here.
}
}