Determine if a reflected type can be cast to another reflected type - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T18:20:00Zhttp://stackoverflow.com/feeds/question/292437http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/292437/determine-if-a-reflected-type-can-be-cast-to-another-reflected-type0Determine if a reflected type can be cast to another reflected typeAlex McMahon2008-11-15T11:33:49Z2009-11-27T16:06:27Z
<p>In .net (C#), If you have two types discovered through reflection is it possible to determine if one can be cast to the other? (implicit and/or explicit).</p>
<p>What I'm trying to do is create a library that allows users to specify that a property on one type is mapped to a property on another type. Everything is fine if the two properties have matching types, but I'd like to be able to allow them to map properties where an implicit/explicit cast is available. So if they have </p>
<pre><code>class from
{
public int IntProp{get;set;}
}
class to
{
public long LongProp{get;set;}
public DateTime DateTimeProp{get;set;}
}
</code></pre>
<p>they would be able to say that from.IntProp will be assigned to to.LongProp (as an implicity cast exists). But if they said that it mapped to DateTimeProp I'd be able to determine that there's no available cast and throw an exception.</p>
http://stackoverflow.com/questions/292437/determine-if-a-reflected-type-can-be-cast-to-another-reflected-type/292439#2924391Answer by leppie for Determine if a reflected type can be cast to another reflected typeleppie2008-11-15T11:37:05Z2008-11-15T11:37:05Z<p>It would be better to look into TypeConverter's. </p>
http://stackoverflow.com/questions/292437/determine-if-a-reflected-type-can-be-cast-to-another-reflected-type/292549#2925490Answer by Bender for Determine if a reflected type can be cast to another reflected typeBender2008-11-15T13:44:00Z2008-11-15T13:44:00Z<p>So, probably you mean duck typing or structural typing? There are several implementations that will dynamically generate the required proxies.</p>
<p>For example: </p>
<p><a href="http://www.deftflux.net/blog/page/Duck-Typing-Project.aspx" rel="nofollow">http://www.deftflux.net/blog/page/Duck-Typing-Project.aspx</a></p>
http://stackoverflow.com/questions/292437/determine-if-a-reflected-type-can-be-cast-to-another-reflected-type/292772#2927720Answer by nobugz for Determine if a reflected type can be cast to another reflected typenobugz2008-11-15T17:10:22Z2008-11-15T17:10:22Z<p>It is completely automatic, you don't have to help. For example:</p>
<pre><code>using System;
using System.Reflection;
namespace ConsoleApplication1 {
class Program {
static void Main(string[] args) {
from inpObj = new from();
inpObj.IntProp = 42;
PropertyInfo inp = typeof(from).GetProperty("IntProp");
object value = inp.GetValue(inpObj, null);
to outObj = new to();
PropertyInfo out1 = typeof(to).GetProperty("LongProp");
out1.SetValue(outObj, value, null);
System.Diagnostics.Debug.Assert(outObj.LongProp == inpObj.IntProp);
PropertyInfo out2 = typeof(to).GetProperty("DateTimeProp");
// Kaboom, ArgumentException
out2.SetValue(outObj, value, null);
}
}
class from {
public int IntProp { get; set; }
}
class to {
public long LongProp { get; set; }
public DateTime DateTimeProp { get; set; }
}
}
</code></pre>
<p>Well, that's not entirely true. The class may have defined a conversion operator. Only the compiler can automatically invoke them, not reflection. Finding and invoking those yourself is pretty untrivial.</p>
http://stackoverflow.com/questions/292437/determine-if-a-reflected-type-can-be-cast-to-another-reflected-type/1809539#18095390Answer by Alex Marshall for Determine if a reflected type can be cast to another reflected typeAlex Marshall2009-11-27T16:06:27Z2009-11-27T16:06:27Z<p>To directly answer your question ...</p>
<blockquote>
<p>If you have two types discovered through reflection is it possible to determine if one can be cast to the other? (implicit and/or explicit)</p>
</blockquote>
<p>... you can use something similar to this :</p>
<pre><code>to.GetType().IsAssignableFrom(from.GetType());
</code></pre>
<p>The Type.IsAssignableFrom() method can be used for exactly your purpose. This would also be considerably less verbose (even if only marginally more performant) than using TypeConverters.</p>