Hello team ,
I am working on an automation project . I have an array of string and I would love to reshuffle the array , how can I achieve this in studio
Hello team ,
I am working on an automation project . I have an array of string and I would love to reshuffle the array , how can I achieve this in studio
Please try this in assign
arrstr = arrstr.OrderBy(Function(x) Guid.NewGuid()).ToArray()
cheers