Hi there,
I've a list of usercontrols which I've had imported via ImportMany Attribute. See the following code segment :
[ImportMany]
private List<Lazy<IUserControl, ILinkerMetadata>> UserControlsMetaData { get; set; }
So if I add each Lazy data record to a e.g. combobox, the data record won't be load, because it's tagged as Lazy (consequential! :-))
Now, my question - whats the opposite of Lazy?. I couldn't import the metadata to a dictionary like this :
[ImportMany]
private Dictionary<IUserControl, ILinkerMetadata> UserControlsMetaData {get; set;}
Thanks in advance,
patrick