#array as get params
19 messages · Page 1 of 1 (latest)
It's an array of strings, right? string []
Yes
Or is it something else? Without knowing what the url normally looks like it'll be hard to say
Why did you do [string]?
[string] is an array of length one with its single value being of type string.
string[] is an array of undetermined length, with each value being of type string.
Array<string> is the same as string[] just with a different syntax
Well, if it's in a URL it'll be a string