我正在尝试将变量的名称作为字符串返回。
所以如果变量是var1,我想返回字符串“var1”。
有什么办法可以做到这一点吗?我听说反射可能是在正确的方向。
编辑:
我本质上是在尝试使有组织的树视图的实现更简单。我有一个方法,你给出两个字符串:rootName 和 subNodeText。rootName 恰好是一个变量的名称。对此方法的调用是从该变量的 with 块中调用的。我希望用户能够调用 Method(.getVariableAsString, subNodeText) 而不是 Method("Variable", subNodeText)。想要以编程方式获取它的原因是可以简单地复制和粘贴此代码。我不想每次变量被命名为异常时都对其进行调整。
Function aFunction()
Dim variable as Object '<- This isn't always "variable".
Dim someText as String = "Contents of the node"
With variable '<- Isn't always "variable". Could be "var", "v", "nonsense", etc
'I want to call this
Method(.GetName, someText)
'Not this
Method("Variable",someText)
End With
End Function