Pass array of strings to iOS bridge?

How can I pass an array of strings to iOS bridge?

How about other types?

I found out how to do it like this:

void _Mj_iosbridge_dosomething(const char* urls[], int urlcount) {
	for (int i = 0; i < urlcount; i++) {
		NSString* stringurl = CreateNSString(urls*);*
  • }*
    }
    On the C# Unity side of things you have to send a List etc converted to array, also you have to specify the length of the array in the next parameter.