我需要将一个对象类型值传递给一个从文本文件中读取的过程(String fromat)。
'param node- Object type
'param txtvalue - String
Function setTexttoElement(nodename, txtvalue)
nodename.Text = txtvalue
End Function
方法在传递以下值时非常有效
setTexttoElement myElement, abc
但是当读取文件时,它采用String格式。所以我需要将第一个值转换为Object
“myElement”,“abc”
如何解决这个问题?