英文:
Argument 'ArrayRow':BC30333: Value of type 'Integer()' cannot be converted to 'Object()' because 'Integer' is not a reference type
问题
我在UiPath自动化中遇到了这个错误。
参数 'ArrayRow':BC30333:类型为 'Integer()' 的值无法转换为 'Object()',因为 'Integer' 不是引用类型。
我试图添加一个ArrayRow参数(例如:{x,y})。然后出现了下面的错误,我附上了我使用的内容以及遇到的错误的图片链接。
X和Y的类型是整数。
英文:
I am Facing this error in UiPath Automation.
Argument 'ArrayRow':BC30333: Value of type 'Integer()' cannot be converted to 'Object()' because 'Integer' is not a reference type
I am trying to add ArrayRow Argument (Example:- {x,y}). then this error is occure below i Attach Image what i use and which error is faceing
X and Y is type Integer
答案1
得分: 0
你将需要将你的变量转换为对象,如下所示。
参考此链接获取详细信息:https://docs.uipath.com/activities/other/latest/workflow/add-data-row
英文:
You will have to convert your variable to Object like below.
Refer this link for detail info: https://docs.uipath.com/activities/other/latest/workflow/add-data-row
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论