c# choosing class properties with a variable? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T17:24:21Z http://stackoverflow.com/feeds/question/792752 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable 1 c# choosing class properties with a variable? Gareth 2009-04-27T09:05:51Z 2009-04-27T10:31:36Z <p>Hello All,</p> <p>I'm adding functionality to one of our existing (but broken) systems. It grabs an XML file from a web service, parses it and then does some stuff before packing it back into our database.</p> <p>the previous developer (who has now left) left me this little gem:</p> <p><a href="http://dl.getdropbox.com/u/109069/wut.GIF" rel="nofollow">http://dl.getdropbox.com/u/109069/wut.GIF</a></p> <p>and I wonder if there's a way round this?</p> <p>Can I loop through each node and assign to the wo object by its name?</p> <p>something like this (pseudo code):</p> <pre><code> foreach XmlNode xn in WorkorderNodeTree { //find out the property name of the current node //match to the property in the workorder class //set the value equal wo.&lt;xn.name&gt; = xn.innertext } </code></pre> <p>Now the only thing I found which gets close is this (from the interweb):</p> <pre><code> foreach (XmlNode xl in myXML) { object o = Assembly.GetExecutingAssembly().CreateInstance("Workorder", true); Type t = xl.Name.GetType(); PropertyInfo pi = t.GetProperty(xl.Name); pi.SetValue(o, xl.InnerText, null); } </code></pre> <p>but it returns a null reference exception on o. I am a little confused, any tips?</p> <p>I presume to do this, I need to use reflection or generics, but I've never hit upon these things before - can anyone advise anything which might point me in the right direction or at least try to explain reflection?</p> <p>Many thanks all, apologies for the hideously long post!</p> <p>EDIT: </p> <p>Thanks, Very deep and sincere thanks go to Fredrik and Rytmis - both of you are white knights in my drab office environment. Rytmis' code edits have solved the issue but I have learned much in this hour or so - Thanks guys, really appreciate it.</p> http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792768#792768 0 Answer by Fredrik Mörk for c# choosing class properties with a variable? Fredrik Mörk 2009-04-27T09:10:15Z 2009-04-27T09:10:15Z <p>Try the following code to create the Workorder instance instead:</p> <pre><code>Workorder o = Activator.CreateInstance&lt;Workorder&gt;(); </code></pre> http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792770#792770 1 Answer by Anton Gogolev for c# choosing class properties with a variable? Anton Gogolev 2009-04-27T09:11:00Z 2009-04-27T09:11:00Z <p>Try <a href="http://www.codeplex.com/AutoMapper" rel="nofollow">AutoMapper</a> or Custom Mapping in <a href="http://bltoolkit.com/Doc/Mapping/MapToJson.htm" rel="nofollow">BLToolkit</a>.</p> http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792781#792781 0 Answer by Davide Vosti for c# choosing class properties with a variable? Davide Vosti 2009-04-27T09:14:58Z 2009-04-27T09:14:58Z <p>As Fredrik said, </p> <pre><code>Workorder o = Activator.CreateInstance&lt;Workorder&gt;(); </code></pre> <p>will fix the null reference. The rest of code for copying the properties is right.</p> http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792818#792818 0 Answer by Rytmis for c# choosing class properties with a variable? Rytmis 2009-04-27T09:29:57Z 2009-04-27T09:29:57Z <p>I think your code may need a bit of adjustment. </p> <pre><code>foreach (XmlNode xl in myXML) { object o = Assembly.GetExecutingAssembly().CreateInstance("Workorder", true); Type t = xl.Name.GetType(); PropertyInfo pi = t.GetProperty(xl.Name); pi.SetValue(o, xl.InnerText, null); } </code></pre> <p>This creates a new instance of WorkOrder for every property you're setting, and also tries to reflect the PropertyInfo from Name.GetType() which is actually typeof(String), and not typeof(WorkOrder) like you'd want it to be. Instead:</p> <pre><code>WorkOrder w = new WorkOrder(); Type t = typeof(WorkOrder); foreach (XmlNode xl in myXML) { PropertyInfo pi = t.GetProperty(xl.Name); pi.SetValue(w, xl.InnerText, null); } </code></pre> <p>[edit] You may also want to specify some binding flags:</p> <pre><code> PropertyInfo pi = t.GetProperty(xl.Name, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase); </code></pre> <p>That may or may not be required. I can never remember what the defaults are. :)</p> http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792890#792890 1 Answer by Mehmet Aras for c# choosing class properties with a variable? Mehmet Aras 2009-04-27T09:55:06Z 2009-04-27T09:55:06Z <p>How about letting the xml serialization (System.Xml.Serialization.XmlSerializer) do the work for you? Depending on the xml, you may simply use Deserialize method that returns a WorkOrder object initialized from the xml data. If the xml you get does not directly map to WorkOrder, you can try to use various Xml attributes on WorkOrder to class to have more control over the way WorkOrder serializes. You can also take a look at DataContractSerializer which is faster and more flexible but you don't have as much control over the serialization as you do with XmlSerialization.</p> <p>You could also consider adding a static method to WorkOrder class, FromXml, that takes xml and return WorkOrder object. Internally, you can use deserialization or you could even simply initialize properrties in a switch without messing with reflection. </p> http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792941#792941 1 Answer by Peter Wone for c# choosing class properties with a variable? Peter Wone 2009-04-27T10:10:18Z 2009-04-27T10:10:18Z <p>Call me Mr Silly, but why don't you change the WorkOrder constructor to take an <code>XmlNode</code> parameter, shovel all the ugly assignments into it, and just invoke it like this:</p> <pre><code>WorkOrder wo = new WorkOrder(xmlnode); </code></pre> http://stackoverflow.com/questions/792752/c-choosing-class-properties-with-a-variable/792996#792996 0 Answer by Guillaume for c# choosing class properties with a variable? Guillaume 2009-04-27T10:31:36Z 2009-04-27T10:31:36Z <p>You shouldn't use reflection, use existing .Net serialization or leave (ugly but working) static code.</p> <p>What about other types than string? What if the xml format doesn't match?</p>