标签: c# generics methods delegates func
我如何根据以下样本提供退货价值?我想使用这个函数,如MyMethod(model=> model.Id)
MyMethod(model=> model.Id)
public T MyMethod(Func<T> item) { return ?? }
答案 0 :(得分:2)
public TS MyMethod<T,TS>(T item,Func<T,TS> selector) { return selector(item); }