vote up 0 vote down star

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).

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

class from  
{
  public int IntProp{get;set;}
}

class to
{
  public long LongProp{get;set;}
  public DateTime DateTimeProp{get;set;}
}

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.

flag

3 Answers

vote up 1 vote down

It would be better to look into TypeConverter's.

link|flag
vote up 0 vote down

So, probably you mean duck typing or structural typing? There are several implementations that will dynamically generate the required proxies.

For example:

http://www.deftflux.net/blog/page/Duck-Typing-Project.aspx

link|flag
vote up 0 vote down

It is completely automatic, you don't have to help. For example:

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; }
  }

}

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.