I know that T is List<string>
(or List<MyClass>
). How should look reflection or something that allow me to return this List of string?
public T Deserialize<T>(string response)
{
//just example
string[] words = response.Split(' ');
List<string> wordsList = words.ToList();
//?
return wordsList;
}
Background: Deserialize method is used to parse html data. It is something like own myJson.myDeserialize method used in Website, which does not have API.