How to initial this varible

I wonder how to initial this varible?
thanks

Hello change the variable type of collRed to System.Collections.Generic.List<System.Int32> and in an assign or in that same default value panel you can use New List (Of Int32)

The issue there is that CollRed is currently an array of Int Type … So the variable type has to be changed and use this New List (Of Int32)

2 Likes

@jmy if you want to initialize an array of string , you can set default value to new Int32(){}

Or you can do reverse and change variable type to
System.Collections.Generic.List<System.Int32>

Please mark it as solution if you find it helpful

@jmy
just some entry help:

results to:
grafik

1 Like

Thnaks everyone

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.