Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 UiPath RPA 中,如何创建具有不同数据类型的集合变量?例如,字符串、数字、布尔值甚至数组或列表的集合。试图查看 System.Collections.Generic,但找不到相关的。
感谢您的支持哈拉
创建一个新变量。选择System.Collections.Generic.List<T>类型,然后选择您的自定义类。这是一个集合自定义对象。
System.Collections.Generic.List<T>
或者,使用Array<T>,然后选择您的自定义类。下图显示了一个字符串数组:
Array<T>
最好的方法是创建一个 Dictionary String/Object :
[1]:https://i.stack.imgur.com/inSuQ.png
您可以通过创建一个 type 的新变量来创建一个对象列表System.Collections.Generic.List<System.Object>。该类Object是 .NET 类型层次结构的根类,因此 List 几乎可以容纳任何东西。
System.Collections.Generic.List<System.Object>
Object