我知道 T 是List<string>
(或List<MyClass>
)。应该如何看待反射或允许我返回此字符串列表的东西?
public T Deserialize<T>(string response)
{
//just example
string[] words = response.Split(' ');
List<string> wordsList = words.ToList();
//?
return wordsList;
}
背景:反序列化方法用于解析html数据。它类似于网站中使用的自己的 myJson.myDeserialize 方法,它没有 API。