使用反射,我可以对属性执行ToString.但是有没有办法在执行此操作时提供格式?
public static object GetCustomValue(object src, string propName)
{
return src.GetType().GetMethod(propName).GetValue(src, null);
}
像这样调用函数可以正常工作
GetCustomValue(obj, "ToString")
但我想用
GetCustomValue(obj, "ToString(\"MMM\")")
在我的函数中调用GetMethod时是否可以向ToString添加格式?
解决方法:
如果您的ToString接受参数(默认参数不接受),则添加一个额外的可选参数:
public static Object GetCustomValue (object Target, string MethodName, String Format = null)
{
// Gets the ToString method that accepts a string as the parameter and invoke it.
return Target.GetType ()
.GetMethod (MethodName, new [] {typeof (String)})
.Invoke (Target, new Object[] {Format});
}
这样您可以称之为:
GetCustomValue (obj, "ToString", "MMM");