How to deserialize Json String dynamically
问题 I have consume Survey data via SSE Stream that gives me each persons answers line by line with this format for Survey X : {"data":["4482359","12526","5","5","","Yes, that is right","1"]} I read it into a List(of String) using Streamreader Dim sr As StreamReader = New StreamReader(stream) Dim myList As List(Of String) = New List(Of String) While sr.Peek >= 0 myList.Add(sr.ReadLine()) End While Now I want to deserialize the strings so I get the entries into properties of a class (let us call it