gpt4 book ai didi

c# - 使用包含 .Net 中变量名称的字符串访问方法局部变量值

转载 作者:行者123 更新时间:2023-12-02 04:48:53 25 4
gpt4 key购买 nike

我正在尝试根据包含变量名称的字符串获取已在方法中本地声明的变量的值。我一直在尝试使用多个 SO threads 中发布的反射.变量的名称存储在一个表中,并以相同的方法访问。

我遇到的问题是查看方法局部变量或方法本身。我可以看到一个全局变量的值,如下面的代码片段所示,但我在我的方法中找不到局部变量。换句话说,变量 TestrecordType 被声明为类变量,我可以使用下面的代码以任何方法访问它。我需要访问代码所在的本地方法中的变量。任何人都可以帮助我深入到方法级别吗?可能吗?

//10.07.2013 DRowe Collecting data for the json class
Corporate_Record clsCorporateRecord = new Corporate_Record();

// get the mapping for the class
ABC.Services.SYS.BmsBoardingEntryLayoutSpecificationCollection colLayoutSpecs = new ABC.Services.SYS.BmsBoardingEntryLayoutSpecificationCollection();
colLayoutSpecs = ABC.Services.SYS.BmsBoardingEntryLayoutSpecification.GetBySubClass("Corporate_Record");
foreach (ABC.Services.SYS.BmsBoardingEntryLayoutSpecification SpecRecord in colLayoutSpecs) {

// Alter main class level (Global) variable
TestrecordType = TestrecordType + " Now";

string myproperty = SpecRecord.FieldName ;
string myVariable = SpecRecord.MapToCodeVariable;
string myType = SpecRecord.Type;

// Can grab Main class variable values but not the local method variable values
var result = this.GetType().GetField("TestrecordType").GetValue(this);

clsCorporateRecord.GetType().GetProperty(myproperty).SetValue(clsCorporateRecord, result, null);

MethodInfo mInfo = typeof(Worker).GetMethod("CreateCorporateRecord01");
}
myCollection.Corporate_Record.Add(clsCorporateRecord);
//10.07.2013 DRowe END

最佳答案

局部变量不在反射中表示。您可以看到全局变量,因为它们是某个类型的成员。然而,局部变量只是当前堆栈上的槽,该堆栈不会暴露给反射 API。

调用堆栈以编程方式公开的唯一位置是在异常的堆栈跟踪中。您可以故意抛出一个异常,捕获它,然后通过堆栈跟踪进行选择。但这将是一个非常糟糕的想法,而且非常缓慢。

关于c# - 使用包含 .Net 中变量名称的字符串访问方法局部变量值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19254325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com