I have a js stringify array "["yellow", "black"]"
and I'm trying to convert it to C# list
Iv' tried to do the following code
stringList.Trim('[',']').ToList();
But the result is a list if every char
[ "y","e","l","l","o","w"...]
Any ideas of how can I do that?
THX