.NET Reflection Create Class Properties - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T01:18:30Zhttp://stackoverflow.com/feeds/question/799022http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/799022/net-reflection-create-class-properties0.NET Reflection Create Class PropertiesRuss2009-04-28T17:25:45Z2009-04-29T07:55:53Z
<p>Hi,
I am fairly new to reflection and I would like to know, if possible, how to create an instance of a class then add properties to the class, set those properties, then read them later. I don't have any code as i don't even know how to start going about this. C# or VB is fine.</p>
<p>Thank You</p>
<p>EDIT: (to elaborate)</p>
<p>My system has a dynamic form creator. one of my associates requires that the form data be accessible via web service. My idea was to create a class (based on the dynamic form) add properties to the class (based on the forms fields) set those properties (based on the values input for those fields) then return the class in the web service. </p>
<p>additionally, the web service will be able to set the properties in the class and eventually commit those changes to the db.</p>
http://stackoverflow.com/questions/799022/net-reflection-create-class-properties/799033#7990333Answer by Greg Beech for .NET Reflection Create Class PropertiesGreg Beech2009-04-28T17:27:42Z2009-04-29T07:44:16Z<p>If you mean dynamically create a class, then the two options are:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/3y322t50.aspx" rel="nofollow">Reflection.Emit</a> - Difficult, Fast to create the class</li>
<li><a href="http://msdn.microsoft.com/en-us/library/y2k85ax6.aspx" rel="nofollow">CodeDom</a> - Less Difficult, Slower to create the class</li>
</ul>
<p>If you mean create an instance of an existing class, then start with <a href="http://msdn.microsoft.com/en-us/library/system.activator.createinstance.aspx" rel="nofollow">Activator.CreateInstance</a> to create an instance of the object, and then look at the methods on <a href="http://msdn.microsoft.com/en-us/library/system.type.aspx" rel="nofollow">Type</a> such as <a href="http://msdn.microsoft.com/en-us/library/system.type.getproperty.aspx" rel="nofollow">GetProperty</a> which will return a <a href="http://msdn.microsoft.com/en-us/library/system.type.getproperty.aspx" rel="nofollow">PropertyInfo</a> that you can call <a href="http://msdn.microsoft.com/en-us/library/system.reflection.propertyinfo.getvalue.aspx" rel="nofollow">GetValue</a> and <a href="http://msdn.microsoft.com/en-us/library/system.reflection.propertyinfo.setvalue.aspx" rel="nofollow">SetValue</a> on.</p>
<p><hr /></p>
<p>Update: For the scenario you describe, returning dynamic data from a web service, then I'd recommend against this approach as it's hard for you to code, and hard for statically-typed languages to consume. Instead, as suggested in the comments and one of the other answers, some sort of dictionary would likely be a better option.</p>
<p>(Note that when I say return some sort of dictionary, I am speaking figuratively rather than literally, i.e. return something which is conceptually the same as a dictionary such as a list of key-value pairs. I wouldn't recommend directly returning one (even if you're using WCF which does support this) because it's typically better to have full control over the XML you return.)</p>
http://stackoverflow.com/questions/799022/net-reflection-create-class-properties/799054#7990541Answer by Noldorin for .NET Reflection Create Class PropertiesNoldorin2009-04-28T17:34:12Z2009-04-28T17:34:12Z<p>The <a href="http://docs.msdnaa.net/ark%5Fnew/Webfiles/Books/623c30f.pdf" rel="nofollow">Execution-Time Code Generation</a> chapter of Eric Gunnerson's book (A Programmer's Introduction to C#) has some great information on this topic. See page 14 and onwards in particular. He outlines the two main methods of accomplishing dynamic class/code generation (CodeDOM and the Reflection.Emit namespace). It also discusses the difficulty and performance of the two approaches. Have a read through that, and you ought to find everything you might need.</p>
http://stackoverflow.com/questions/799022/net-reflection-create-class-properties/799094#7990940Answer by Denis Troller for .NET Reflection Create Class PropertiesDenis Troller2009-04-28T17:44:45Z2009-04-28T17:44:45Z<p>The real question is, what do you need to use those properties for?</p>
<p>What are gonna be the use cases? Do you need to bind those properties to the UI somehow? Using what kind of technology? (WPF, Windows Forms?)</p>
<p>Is it just that you need to gather a set of key/value pairs at runtime? Then maybe a simple dictionary would do the trick.</p>
<p>Please elaborate if you can on what it is you need, and I'm sure people here can come up with plenty of ways to help you, but it's difficult to give a good answer without more context.</p>
http://stackoverflow.com/questions/799022/net-reflection-create-class-properties/801335#8013351Answer by Diago for .NET Reflection Create Class PropertiesDiago2009-04-29T07:55:53Z2009-04-29T07:55:53Z<p>I know this is being overly simplified by why not just KISS and generate the required Xml to return through the Web Service and then parse the returned Xml to populate the database. </p>
<p>My reasoning is that for the expanded reason you suggest doing this I can see the value or reason for wanting a dynamic class?</p>