I’m writing a function with parameters. In parameters includes an array but this array type should be string. How can i define an string array?
I did like this => Function(ByVal P_Names() As Array) … this gives me an error.
The error is “Option Strict On disallows implicit conversions from ‘Array’ to ‘Array()’”
I’m going to use this array like this => P_Names(0)… etc.
hi, I defined an string array outside the invoke code and this array includes string datas and array name is myNames and also invoke arg name.
I’m reaching this datas like this ex : P_Names(0). This is function parameter of course.
When i use this function i’m going to use like this. => Let say function name is ‘callNames’
callNames(myNames(0))
and function do some jobs. This doesn’t important.