• Venu Adepu 24
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies

I have a JSON string which represents a List<String>, but I can't figure out how to deserialize it - I don't know what to put for the deserialization type argument.

 

List<String> myList = (List<String>)System.JSON.deserialize(json_string, ????);

 

I've tried putting "List<String>" as the arg, but I get an error about an "unexpected token".