The current limit for the length of lists is Int32 i.e a max of 256 elements can be kept in it. How do I increase it or make it dynamic so that I can keep unlimited number of elements in the list?

The current limit for the length of lists is Int32 i.e a max of 256 elements can be kept in it. How do I increase it or make it dynamic so that I can keep unlimited number of elements in the list?

Microsoft supports max 8 bytes of range for some data types.

You can use

  1. Int64 which can store integers upto 8 bytes or
  2. Double which can store floating point numbers upto 8 bytes. Use System.Double as the data type.

Refer this link, if you still need more details about double:
types - Biggest integer that can be stored in a double - Stack Overflow.

Thanks for the information. Can you please let me know how do I change the length of list from Int32 to Int64 in UIPath?

You can update the data type to int64 from variables panel in studio

Please share a snapshot for that.

Step 1:

Step 2: