changing a variable type is throwing an error

Learning platform

Data Manipulation with String

Description

Hello folks,

I am new here, I am following the course of Data manipulation with strings and stumbled into an error while trying to change the variable type to List

As explained in the video I need to change the variable type of bookstore to a list, I browse for Types then type generic.list then select List, error: Not all generic types could be resolved.

any idea how to resolve this error?

Thanks!

Fadi

Link

https://academy.uipath.com/courses/data-manipulation-with-strings-in-studio?lo_cId=1qHjVP7kn3AjnILXexpiMr

Date

2025-05-20

Related UiPath products

Studio

Hi @Fadi

Type System.Collections.Generic.List and inside <> select the required datatype like String or Int32 whichever needed.

Hope it helps!!

1 Like

Hi @Fadi

In the Variables pane, set the type of bookstore to System.Collections.Generic.List<System.String> (or your desired type).

Assign with bookstore = New List(Of String)().

Happy Automation With UiPath!

1 Like