Setting properties of an object through reflection with different properties types - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T00:20:17Zhttp://stackoverflow.com/feeds/question/862783http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/862783/setting-properties-of-an-object-through-reflection-with-different-properties-type3Setting properties of an object through reflection with different properties typesStefano Ricciardi2009-05-14T11:17:55Z2009-05-14T11:35:29Z
<p>Hi,</p>
<p>I am using reflection to populate the properties of an object. </p>
<p>These properties have different types: String, Nullable(double) and Nullable(long) (don't know how to escape the angle brackets here ...). The values for these properties are coming from a dictionary of (string, object) pairs.</p>
<p>So, for example my class has the following properties:</p>
<pre><code>string Description { get; set; }
Nullable<long> Id { get; set; }
Nullable<double> MaxPower { get; set; }
</code></pre>
<p>(in reality there are about a dozen properties) and the dictionary will have entries like <"Description", "A description">, <"Id", 123456>, <"MaxPower", 20000></p>
<p>Now I am using something like the following to set the values:</p>
<pre><code>foreach (PropertyInfo info in this.GetType().GetProperties())
{
if (info.CanRead)
{
object thisPropertyValue = dictionary[info.Name];
if (thisPropertyValue != null && info.CanWrite)
{
Type propertyType = info.PropertyType;
if (propertyType == typeof(String))
{
info.SetValue(this, Convert.ToString(thisPropertyValue), null);
}
else if (propertyType == typeof(Nullable<double>))
{
info.SetValue(this, Convert.ToDouble(thisPropertyValue), null);
}
else if (propertyType == typeof(Nullable<long>))
{
info.SetValue(this, Convert.ToInt64(thisPropertyValue), null);
}
else
{
throw new ApplicationException("Unexpected property type");
}
}
}
}
</code></pre>
<p>So the question is: do I really have to check the type of each property before assigning the value? Is there anything like a cast that I can perform so that the property value is assigned the type of the corresponding property?</p>
<p>Ideally I would like to be able to do something <em>like</em> the following (which I naively thought might have worked):</p>
<pre><code> if (thisPropertyValue != null && info.CanWrite)
{
Type propertyType = info.PropertyType;
if (propertyType == typeof(String))
{
info.SetValue(this, (propertyType)thisPropertyValue, null);
}
}
</code></pre>
<p>Thanks,
Stefano</p>
http://stackoverflow.com/questions/862783/setting-properties-of-an-object-through-reflection-with-different-properties-type/862811#8628115Answer by Marc Gravell for Setting properties of an object through reflection with different properties typesMarc Gravell2009-05-14T11:27:32Z2009-05-14T11:35:29Z<p>If the values are already of the correct type, then no: you don't have to do anything. If they might not be right (int vs float, etc), the a simple approach might be:</p>
<p>(<strong>edit</strong> adjusted for nulls)</p>
<pre><code>Type propertyType = info.PropertyType;
if (thisPropertyValue != null)
{
Type underlyingType = Nullable.GetUnderlyingType(propertyType);
thisPropertyValue = Convert.ChangeType(
thisPropertyValue, underlyingType ?? propertyType);
}
info.SetValue(this, thisPropertyValue, null);
</code></pre>