Hello everyone,
I got a problem to consult with you.
Two string variables: str1 , str2
An array variable:arr
I try to use activity “assign”,do you know how to append “str1”,“str2” to “arr”?
Thanks
Hello everyone,
I got a problem to consult with you.
Two string variables: str1 , str2
An array variable:arr
I try to use activity “assign”,do you know how to append “str1”,“str2” to “arr”?
Thanks
Hi,
you can assign to a cell, you can try this method:
str1=“Your Value”
str2=“Your Value”
String.Concat(str1,str2)
Regards,
Neelima.
Thank you ,i 'll have a try.
Hi,
You can also use Append method. This returns IEnumerable<T> type, so it will be the following.
arr = {"1", "2"}
arr = arr.Append(str1).ToArray
arr = arr.Append(str2).ToArray
Regards,
Thank you very much.