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?
Hi @mironb
You can initialize Array(System.String) in this way:
SMSNumberArray={"111111"}
If you want Array(System.Int32) you can initialize below way:
SMSNumberArray={111111}
Regards
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.