I have this kind of String
string input="[\"Modell\",\"Jan.\",\"Feb.\",\"Mrz.\",\"Apr.\",\"Mai\",\"Jun.\",\"Jul.\",\"Aug.\",\"Sep.\",\"Okt.\",\"Nov.\",\"Dez.\"]";
I need to convert it into something like this:
string[] output;//convert "input" to it
I was looking at here,here and here, but it didn't help me.
How can I convert my string
to string[]
is this case ?