How to cast implicitly on a reflected method call

只愿长相守 提交于 2019-12-03 23:44:17

Found an answer which uses a TypeConverter (as Saeed mentions)
Seems to do the job.

TypeConverter For Implicit Conversion when using reflection

The trick is to realize that the compiler creates a special static method called op_Implicit for your implicit conversion operator.

object arg = "foo";

// Program.showThing(Thing t)
var showThingReflected = GetType().GetMethod("showThing");

// typeof(Thing)
var paramType = showThingReflected.GetParameters()
                                  .Single()
                                  .ParameterType; 

// Thing.implicit operator Thing(string s)
var converter = paramType.GetMethod("op_Implicit", new[] { arg.GetType() });

if (converter != null)
    arg = converter.Invoke(null, new[] { arg }); // Converter exists: arg = (Thing)"foo";

// showThing(arg)
showThingReflected.Invoke(this, new[] { arg });

In this specific case you can make the conversion through the array type, that is

showThingReflected.Invoke(this, new Thing[] {"foo"});

but that's a kind of "cheating". In general, you cannot expect the Invoke to consider your user-defined implicit operator. This conversion must be inferred compile-time.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!