How to initialize a array

I have the following variable of type string
I want to initialize it with the following value: 111111 How do I write it in value to save?

image

Hi @mironb

SMSNumberArray={111111}

Cheers!!

Hi @mironb

You can initialize Array(System.String) in this way:

SMSNumberArray={"111111"}


image
If you want Array(System.Int32) you can initialize below way:

SMSNumberArray={111111}


image

Regards

1 Like

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