本文介绍了使用反射获取函数的参数值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的所有人,我在签名功能方面遇到了麻烦

  void   event  ref   string  BusinessObjectInfo, out   bool  BubbleEvent)
{



我想用使用反射在函数内部的BubbleEvent值。你能建议我该怎么做。

我试过以下

var v = MethodBase.GetCurrentMethod()。GetParameters()。GetValue(1)

但仍有问题,不知道从哪里获得价值。



感谢您的帮助

解决方案



Dear All, I am having trouble in a function of signature

void event(ref string BusinessObjectInfo, out bool BubbleEvent)
       {


I want to use value of BubbleEvent inside the function using reflection. Can you suggest How should I go for it.
I have tried following
var v = MethodBase.GetCurrentMethod().GetParameters().GetValue(1)
but still in trouble don't know where to get the value.

Thank you for help

解决方案



这篇关于使用反射获取函数的参数值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 14:08