I don’t understand why I get this
the month variable is a “string array”
and in the other field use this (“January”, “February”, “March”, “April”, “May”, “June”, “July”, “August”, “September”, “October”, "November “,” December ")
but I get expected end of expression, if it’s okay, I don’t understand
Is there a way to fix it?
thank you
if Months variable is a array or list variable then the assign should be like this
if its a array Months = {“January”, “February”, “March”, “April”, “May”, “June”, “July”, “August”, “September”, “October”, “November “,” December”}
if its a list Months = New List(of string) from {“January”, “February”, “March”, “April”, “May”, “June”, “July”, “August”, “September”, “October”, “November “,” December”}