我被困住了,假设我有一个方法:
public void InsertEmployee(Employee _employee, out Guid _employeeId)
{
//My code
//Current execution is here.
//And here I need a list of 'out' parameters of 'InsertEmployee' Method
}
如何做到这一点?我知道的一种方式
MethodInfo.GetCurrentMethod().GetParameters()
但是更具体的 out 参数怎么样?