I have an imported assembly in my project, and I want to pass an object that is defined within the imported assembly. I want to manually construct each member of this object, but its members are read-only and does not have a constructor, so I can't seem to instantiate a derived object.

The imported class is defined something like this

public class foo
{
    public int num { get; }
    public String name { get; }
}

I used FormatterServices.GetUninitializedObject, but I feel it's a start. Perhaps there's a way to programmatically serialize?

Is there any way of instantiating it and passing it safely?

link|improve this question

46% accept rate
1  
It sounds like the other library doesn't want you creating the instances... is there no API for creating them? Reflection should work, of course. – Marc Gravell Jul 1 '11 at 22:29
How should I set the members with reflection? – chaz Jul 1 '11 at 22:31
1  
To set the members with reflection, use Type.GetFields to get the private backing fields, then FieldInfo.SetValue. But as Marc says this is probably a bad idea. The other assembly reserves the right to construct instances itself, so it is probably making some assumptions about how the instances are initialised. Poking in your own values could mess up those assumptions and cause obscure breakage when the other assembly tries to use your instances. – itowlson Jul 1 '11 at 22:36
Sounds like this was done on purpose. There must be factory class or some mechanism to initialize that class. And there must be ton of logic to make sure things stay the way they are supposed to when you create an instance. Either way, forcefully doing it doesn't sound right. Just because you can, doesn't mean you should! – Mrchief Jul 1 '11 at 22:37
Well I'm developing a dummy program that simulates an environment for a plugin that imports this class, and one of the methods returns this object with readonly members, and so I want to be able to supply an object to the method that's meaningful. – chaz Jul 1 '11 at 22:47
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.