标签: c# linq reflection
我有方法:
public IFluentBuilder<TValue> Setup<TValue>(Expression<Func<TOptions, TValue>> selector)
我可以打电话给:
Setup(obj => obj.Property).DoSomething()
当我有DoSomething或IFluentBuilder和FieldInfo时,如何通过反思来呼叫PropertyInfo成员MethodInfo。
DoSomething
IFluentBuilder
FieldInfo
PropertyInfo
MethodInfo